grp.getgrall()

grp.getgrall() Return a list of all available group entries, in arbitrary order.

parser.ST.compile()

ST.compile(filename='') Same as compilest(st, filename).

ctypes.c_size_t

class ctypes.c_size_t Represents the C size_t datatype.

ipaddress.IPv6Network.hosts()

hosts()

sqlite3.Cursor

class sqlite3.Cursor A Cursor instance has the following attributes and methods. execute(sql[, parameters]) Executes an SQL statement. The SQL statement may be parameterized (i. e. placeholders instead of SQL literals). The sqlite3 module supports two kinds of placeholders: question marks (qmark style) and named placeholders (named style). Here’s an example of both styles: import sqlite3 con = sqlite3.connect(":memory:") cur = con.cursor() cur.execute("create table people (name_last, age

__future__

Source code: Lib/__future__.py __future__ is a real module, and serves three purposes: To avoid confusing existing tools that analyze import statements and expect to find the modules they’re importing. To ensure that future statements run under releases prior to 2.1 at least yield runtime exceptions (the import of __future__ will fail, because there was no module of that name prior to 2.1). To document when incompatible changes were introduced, and when they will be — or were — made mandatory.

mailbox.MH

class mailbox.MH(path, factory=None, create=True) A subclass of Mailbox for mailboxes in MH format. Parameter factory is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If factory is None, MHMessage is used as the default message representation. If create is True, the mailbox is created if it does not exist. MH is a directory-based mailbox format invented for the MH Message Handling System, a m

inspect.istraceback()

inspect.istraceback(object) Return true if the object is a traceback.

dis.Instruction.opname

opname human readable name for operation

poplib.POP3.stat()

POP3.stat() Get mailbox status. The result is a tuple of 2 integers: (message count, mailbox size).