parser.STType

parser.STType The type of the objects returned by expr(), suite() and sequence2st().

datetime.timedelta.resolution

timedelta.resolution The smallest possible difference between non-equal timedelta objects, timedelta(microseconds=1).

bytearray.isdigit()

bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence is not empty, false otherwise. ASCII decimal digits are those byte values in the sequence b'0123456789'. For example: >>> b'1234'.isdigit() True >>> b'1.23'.isdigit() False

imaplib.IMAP4.login_cram_md5()

IMAP4.login_cram_md5(user, password) Force use of CRAM-MD5 authentication when identifying the client to protect the password. Will only work if the server CAPABILITY response includes the phrase AUTH=CRAM-MD5.

weakref.proxy()

weakref.proxy(object[, callback]) Return a proxy to object which uses a weak reference. This supports use of the proxy in most contexts instead of requiring the explicit dereferencing used with weak reference objects. The returned object will have a type of either ProxyType or CallableProxyType, depending on whether object is callable. Proxy objects are not hashable regardless of the referent; this avoids a number of problems related to their fundamentally mutable nature, and prevent their u

nntplib.NNTP.description()

NNTP.description(group) Get a description for a single group group. If more than one group matches (if ‘group’ is a real wildmat string), return the first match. If no group matches, return an empty string. This elides the response code from the server. If the response code is needed, use descriptions().

ossaudiodev.oss_audio_device.closed

oss_audio_device.closed Boolean indicating whether the device has been closed.

bytearray.split()

bytearray.split(sep=None, maxsplit=-1) Split the binary sequence into subsequences of the same type, using sep as the delimiter string. If maxsplit is given and non-negative, at most maxsplit splits are done (thus, the list will have at most maxsplit+1 elements). If maxsplit is not specified or is -1, then there is no limit on the number of splits (all possible splits are made). If sep is given, consecutive delimiters are not grouped together and are deemed to delimit empty subsequences (for

symtable.SymbolTable.is_nested()

is_nested() Return True if the block is a nested class or function.

poplib.POP3.quit()

POP3.quit() Signoff: commit changes, unlock mailbox, drop connection.