mmap.mmap.tell()

tell() Returns the current position of the file pointer.

curses.ascii.isascii()

curses.ascii.isascii(c) Checks for a character value that fits in the 7-bit ASCII set.

reprlib.Repr.maxlist

Repr.maxlist Repr.maxtuple Repr.maxset Repr.maxfrozenset Repr.maxdeque Repr.maxarray Limits on the number of entries represented for the named object type. The default is 4 for maxdict, 5 for maxarray, and 6 for the others.

types.GetSetDescriptorType

types.GetSetDescriptorType The type of objects defined in extension modules with PyGetSetDef, such as FrameType.f_locals or array.array.typecode. This type is used as descriptor for object attributes; it has the same purpose as the property type, but for classes defined in extension modules.

unittest.TestCase.assertTrue()

assertTrue(expr, msg=None) assertFalse(expr, msg=None) Test that expr is true (or false). Note that this is equivalent to bool(expr) is True and not to expr is True (use assertIs(expr, True) for the latter). This method should also be avoided when more specific methods are available (e.g. assertEqual(a, b) instead of assertTrue(a == b)), because they provide a better error message in case of failure.

logging.getLoggerClass()

logging.getLoggerClass() Return either the standard Logger class, or the last class passed to setLoggerClass(). This function may be called from within a new class definition, to ensure that installing a customized Logger class will not undo customizations already applied by other code. For example: class MyLogger(logging.getLoggerClass()): # ... override behaviour here

email.headerregistry.AddressHeader.groups

groups A tuple of Group objects encoding the addresses and groups found in the header value. Addresses that are not part of a group are represented in this list as single-address Groups whose display_name is None.

socket.socketpair()

socket.socketpair([family[, type[, proto]]]) Build a pair of connected socket objects using the given address family, socket type, and protocol number. Address family, socket type, and protocol number are as for the socket() function above. The default family is AF_UNIX if defined on the platform; otherwise, the default is AF_INET. The newly created sockets are non-inheritable. Changed in version 3.2: The returned socket objects now support the whole socket API, rather than a subset. Chan

ipaddress.IPv6Network.address_exclude()

address_exclude(network)

bz2.BZ2Decompressor.unused_data

unused_data Data found after the end of the compressed stream. If this attribute is accessed before the end of the stream has been reached, its value will be b''.