MCPcopy Index your code
hub / github.com/RustPython/RustPython / deleteacl

Method deleteacl

Lib/imaplib.py:588–593  ·  view source on GitHub ↗

Delete the ACLs (remove any rights) set for who on mailbox. (typ, [data]) = .deleteacl(mailbox, who)

(self, mailbox, who)

Source from the content-addressed store, hash-verified

586 return self._simple_command('DELETE', mailbox)
587
588 def deleteacl(self, mailbox, who):
589 """Delete the ACLs (remove any rights) set for who on mailbox.
590
591 (typ, [data]) = <instance>.deleteacl(mailbox, who)
592 """
593 return self._simple_command('DELETEACL', mailbox, who)
594
595 def enable(self, capability):
596 """Send an RFC5161 enable string to the server.

Callers

nothing calls this directly

Calls 1

_simple_commandMethod · 0.95

Tested by

no test coverage detected