decimal.Context.shift()

shift(x, y) Returns a shifted copy of x, y times.

mmap.mmap.size()

size() Return the length of the file, which can be larger than the size of the memory-mapped area.

email.utils.quote()

email.utils.quote(str) Return a new string with backslashes in str replaced by two backslashes, and double quotes replaced by backslash-double quote.

dbm.gnu.gdbm.sync()

gdbm.sync() When the database has been opened in fast mode, this method forces any unwritten data to be written to the disk.

email.headerregistry.Address.username

username The username portion of the address, with all quoting removed.

email.headerregistry.BaseHeader

class email.headerregistry.BaseHeader(name, value) name and value are passed to BaseHeader from the header_factory call. The string value of any header object is the value fully decoded to unicode. This base class defines the following read-only properties: name The name of the header (the portion of the field before the ‘:’). This is exactly the value passed in the header_factory call for name; that is, case is preserved. defects A tuple of HeaderDefect instances reporting any RFC

fileinput.lineno()

fileinput.lineno() Return the cumulative line number of the line that has just been read. Before the first line has been read, returns 0. After the last line of the last file has been read, returns the line number of that line.

os.sched_param.sched_priority

sched_priority The scheduling priority for a scheduling policy.

decimal.Context.Etop()

Etop() Returns a value equal to Emax - prec + 1.

operator.rshift()

operator.rshift(a, b) operator.__rshift__(a, b) Return a shifted right by b.