struct.calcsize()

struct.calcsize(fmt) Return the size of the struct (and hence of the bytes object produced by pack(fmt, ...)) corresponding to the format string fmt.

zipfile.ZipFile.printdir()

ZipFile.printdir() Print a table of contents for the archive to sys.stdout.

selectors.SelectorKey.events

events Events that must be waited for on this file object.

xml.sax.handler.property_declaration_handler

xml.sax.handler.property_declaration_handler value: "http://xml.org/sax/properties/declaration-handler" data type: xml.sax.sax2lib.DeclHandler (not supported in Python 2) description: An optional extension handler for DTD-related events other than notations and unparsed entities. access: read/write

datetime.datetime.toordinal()

datetime.toordinal() Return the proleptic Gregorian ordinal of the date. The same as self.date().toordinal().

filecmp.dircmp.right_list

right_list Files and subdirectories in b, filtered by hide and ignore.

doctest.Example.source

source A string containing the example’s source code. This source code consists of a single Python statement, and always ends with a newline; the constructor adds a newline when necessary.

set.copy()

copy() Return a new set with a shallow copy of s.

NotImplemented

NotImplemented Special value which should be returned by the binary special methods (e.g. __eq__(), __lt__(), __add__(), __rsub__(), etc.) to indicate that the operation is not implemented with respect to the other type; may be returned by the in-place binary special methods (e.g. __imul__(), __iand__(), etc.) for the same purpose. Its truth value is true.

ftplib.FTP.size()

FTP.size(filename) Request the size of the file named filename on the server. On success, the size of the file is returned as an integer, otherwise None is returned. Note that the SIZE command is not standardized, but is supported by many common server implementations.