datetime.datetime.ctime()

datetime.ctime() Return a string representing the date and time, for example datetime(2002, 12, 4, 20, 30, 40).ctime() == 'Wed Dec  4 20:30:40 2002'. d.ctime() is equivalent to time.ctime(time.mktime(d.timetuple())) on platforms where the native C ctime() function (which time.ctime() invokes, but which datetime.ctime() does not invoke) conforms to the C standard.

xml.sax.handler.property_dom_node

xml.sax.handler.property_dom_node value: "http://xml.org/sax/properties/dom-node" data type: org.w3c.dom.Node (not supported in Python 2) description: When parsing, the current DOM node being visited if this is a DOM iterator; when not parsing, the root DOM node for iteration. access: (parsing) read-only; (not parsing) read/write

xmlrpc.client.ProtocolError.errcode

errcode The error code.

os.fdopen()

os.fdopen(fd, *args, **kwargs) Return an open file object connected to the file descriptor fd. This is an alias of the open() built-in function and accepts the same arguments. The only difference is that the first argument of fdopen() must always be an integer.

bytes.replace()

bytes.replace(old, new[, count]) bytearray.replace(old, new[, count]) Return a copy of the sequence with all occurrences of subsequence old replaced by new. If the optional argument count is given, only the first count occurrences are replaced. The subsequence to search for and its replacement may be any bytes-like object. Note The bytearray version of this method does not operate in place - it always produces a new object, even if no changes were made.

unicodedata.ucd_3_2_0

unicodedata.ucd_3_2_0 This is an object that has the same methods as the entire module, but uses the Unicode database version 3.2 instead, for applications that require this specific version of the Unicode database (such as IDNA).

smtpd.SMTPChannel.seen_greeting

seen_greeting Holds a string containing the greeting sent by the client in its “HELO”.

asyncio

New in version 3.4. Source code: Lib/asyncio/ Note The asyncio package has been included in the standard library on a provisional basis. Backwards incompatible changes (up to and including removal of the module) may occur if deemed necessary by the core developers. This module provides infrastructure for writing single-threaded concurrent code using coroutines, multiplexing I/O access over sockets and other resources, running network clients and servers, and other related primitives. Here i

logging.Logger.addFilter()

Logger.addFilter(filt) Adds the specified filter filt to this logger.

ast.iter_fields()

ast.iter_fields(node) Yield a tuple of (fieldname, value) for each field in node._fields that is present on node.