popleft() Remove and return an element from the left side of the deque. If no elements are present, raises an IndexError.
sqrt(context=None) Return the square root of the argument to full precision.
array.tobytes() Convert the array to an array of machine values and return the bytes representation (the same sequence of bytes that would be written to a file by the tofile() method.) New in version 3.2: tostring() is renamed to tobytes() for clarity.
shlex.whitespace Characters that will be considered whitespace and skipped. Whitespace bounds tokens. By default, includes space, tab, linefeed and carriage-return.
globs The namespace (aka globals) that the examples should be run in. This is a dictionary mapping names to values. Any changes to the namespace made by the examples (such as binding new variables) will be reflected in globs after the test is run.
marshal.version Indicates the format that the module uses. Version 0 is the historical format, version 1 shares interned strings and version 2 uses a binary format for floating point numbers. Version 3 adds support for object instancing and recursion. The current version is 4.
IMAP4.unsubscribe(mailbox) Unsubscribe from old mailbox.
reverse() Reverse the elements of the deque in-place and then return None. New in version 3.2.
curses.napms(ms) Sleep for ms milliseconds.
inspect.getcomments(object) Return in a single string any lines of comments immediately preceding the object’s source code (for a class, function, or method), or at the top of the Python source file (if the object is a module).
Page 567 of 663