http.cookiejar.DefaultCookiePolicy.strict_rfc2965_unverifiable

DefaultCookiePolicy.strict_rfc2965_unverifiable Follow RFC 2965 rules on unverifiable transactions (usually, an unverifiable transaction is one resulting from a redirect or a request for an image hosted on another site). If this is false, cookies are never blocked on the basis of verifiability

turtle.RawPen

class turtle.RawPen(canvas) Parameters: canvas – a tkinter.Canvas, a ScrolledCanvas or a TurtleScreen Create a turtle. The turtle has all methods described above as “methods of Turtle/RawTurtle”.

email.message.Message.__contains__()

__contains__(name) Return true if the message object has a field named name. Matching is done case-insensitively and name should not include the trailing colon. Used for the in operator, e.g.: if 'message-id' in myMessage: print('Message-ID:', myMessage['message-id'])

len()

len(s) Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple, list, or range) or a collection (such as a dictionary, set, or frozen set).

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.

curses.window.clrtobot()

window.clrtobot() Erase from cursor to the end of the window: all lines below the cursor are deleted, and then the equivalent of clrtoeol() is performed.

token.ISNONTERMINAL()

token.ISNONTERMINAL(x) Return true for non-terminal token values.

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

ast.iter_fields()

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