imaplib.IMAP4.deleteacl()

IMAP4.deleteacl(mailbox, who) Delete the ACLs (remove any rights) set for who on mailbox.

importlib.abc.InspectLoader

class importlib.abc.InspectLoader An abstract base class for a loader which implements the optional PEP 302 protocol for loaders that inspect modules. get_code(fullname) Return the code object for a module, or None if the module does not have a code object (as would be the case, for example, for a built-in module). Raise an ImportError if loader cannot find the requested module. Note While the method has a default implementation, it is suggested that it be overridden if possible for perf

ipaddress.ip_network()

ipaddress.ip_network(address, strict=True) Return an IPv4Network or IPv6Network object depending on the IP address passed as argument. address is a string or integer representing the IP network. Either IPv4 or IPv6 networks may be supplied; integers less than 2**32 will be considered to be IPv4 by default. strict is passed to IPv4Network or IPv6Network constructor. A ValueError is raised if address does not represent a valid IPv4 or IPv6 address, or if the network has host bits set. >>

xml.parsers.expat.xmlparser.ExternalEntityRefHandler()

xmlparser.ExternalEntityRefHandler(context, base, systemId, publicId) Called for references to external entities. base is the current base, as set by a previous call to SetBase(). The public and system identifiers, systemId and publicId, are strings if given; if the public identifier is not given, publicId will be None. The context value is opaque and should only be used as described below. For external entities to be parsed, this handler must be implemented. It is responsible for creating t

fractions.Fraction.denominator

denominator Denominator of the Fraction in lowest term.

profile.Profile.enable()

enable() Start collecting profiling data.

cmath.polar()

cmath.polar(x) Return the representation of x in polar coordinates. Returns a pair (r, phi) where r is the modulus of x and phi is the phase of x. polar(x) is equivalent to (abs(x), phase(x)).

shutil.copyfileobj()

shutil.copyfileobj(fsrc, fdst[, length]) Copy the contents of the file-like object fsrc to the file-like object fdst. The integer length, if given, is the buffer size. In particular, a negative length value means to copy the data without looping over the source data in chunks; by default the data is read in chunks to avoid uncontrolled memory consumption. Note that if the current file position of the fsrc object is not 0, only the contents from the current file position to the end of the fil

datetime.time.replace()

time.replace([hour[, minute[, second[, microsecond[, tzinfo]]]]]) Return a time with the same value, except for those attributes given new values by whichever keyword arguments are specified. Note that tzinfo=None can be specified to create a naive time from an aware time, without conversion of the time data.

sched.scheduler.cancel()

scheduler.cancel(event) Remove the event from the queue. If event is not an event currently in the queue, this method will raise a ValueError.