importlib.machinery.SourcelessFileLoader

class importlib.machinery.SourcelessFileLoader(fullname, path) A concrete implementation of importlib.abc.FileLoader which can import bytecode files (i.e. no source code files exist). Please note that direct use of bytecode files (and thus not source code files) inhibits your modules from being usable by all Python implementations or new versions of Python which change the bytecode format. New in version 3.3. name The name of the module the loader will handle. path The path to the

re.match.string

match.string The string passed to match() or search().

ctypes.ArgumentError

exception ctypes.ArgumentError This exception is raised when a foreign function call cannot convert one of the passed arguments.

imaplib.IMAP4.setquota()

IMAP4.setquota(root, limits) Set the quota root‘s resource limits. This method is part of the IMAP4 QUOTA extension defined in rfc2087.

http.client.UnknownTransferEncoding

exception http.client.UnknownTransferEncoding A subclass of HTTPException.

asyncio.asyncio.subprocess.Process

class asyncio.subprocess.Process A subprocess created by the create_subprocess_exec() or the create_subprocess_shell() function. The API of the Process class was designed to be close to the API of the subprocess.Popen class, but there are some differences: There is no explicit poll() method The communicate() and wait() methods don’t take a timeout parameter: use the wait_for() function The universal_newlines parameter is not supported (only bytes strings are supported) The wait() method of t

os.path.samestat()

os.path.samestat(stat1, stat2) Return True if the stat tuples stat1 and stat2 refer to the same file. These structures may have been returned by os.fstat(), os.lstat(), or os.stat(). This function implements the underlying comparison used by samefile() and sameopenfile(). Availability: Unix, Windows. Changed in version 3.4: Added Windows support.

xdrlib.Unpacker.unpack_list()

Unpacker.unpack_list(unpack_item) Unpacks and returns a list of homogeneous items. The list is unpacked one element at a time by first unpacking an unsigned integer flag. If the flag is 1, then the item is unpacked and appended to the list. A flag of 0 indicates the end of the list. unpack_item is the function that is called to unpack the items.

curses.ascii.ismeta()

curses.ascii.ismeta(c) Checks for a non-ASCII character (ordinal values 0x80 and above).

curses.ascii.unctrl()

curses.ascii.unctrl(c) Return a string representation of the ASCII character c. If c is printable, this string is the character itself. If the character is a control character (0x00-0x1f) the string consists of a caret ('^') followed by the corresponding uppercase letter. If the character is an ASCII delete (0x7f) the string is '^?'. If the character has its meta bit (0x80) set, the meta bit is stripped, the preceding rules applied, and '!' prepended to the result.