tarfile.TarInfo.mode

TarInfo.mode Permission bits.

textwrap.TextWrapper.wrap()

wrap(text) Wraps the single paragraph in text (a string) so every line is at most width characters long. All wrapping options are taken from instance attributes of the TextWrapper instance. Returns a list of output lines, without final newlines. If the wrapped output has no content, the returned list is empty.

operator.and_()

operator.and_(a, b) operator.__and__(a, b) Return the bitwise and of a and b.

mailbox.MMDF.unlock()

unlock() Three locking mechanisms are used—dot locking and, if available, the flock() and lockf() system calls.

test.support.WarningsRecorder

class test.support.WarningsRecorder Class used to record warnings for unit tests. See documentation of check_warnings() above for more details.

decimal.Decimal.same_quantum()

same_quantum(other, context=None) Test whether self and other have the same exponent or whether both are NaN. This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly.

set.pop()

pop() Remove and return an arbitrary element from the set. Raises KeyError if the set is empty.

xmlrpc.client.ServerProxy.system.methodHelp()

ServerProxy.system.methodHelp(name) This method takes one parameter, the name of a method implemented by the XML-RPC server. It returns a documentation string describing the use of that method. If no such string is available, an empty string is returned. The documentation string may contain HTML markup.

sys.dont_write_bytecode

sys.dont_write_bytecode If this is true, Python won’t try to write .pyc files on the import of source modules. This value is initially set to True or False depending on the -B command line option and the PYTHONDONTWRITEBYTECODE environment variable, but you can set it yourself to control bytecode file generation.

str.isdigit()

str.isdigit() Return true if all characters in the string are digits and there is at least one character, false otherwise. Digits include decimal characters and digits that need special handling, such as the compatibility superscript digits. Formally, a digit is a character that has the property value Numeric_Type=Digit or Numeric_Type=Decimal.