pyclbr.Class.file

Class.file Name of the file containing the class statement defining the class.

inspect.isgeneratorfunction()

inspect.isgeneratorfunction(object) Return true if the object is a Python generator function.

email.parser.BytesFeedParser

class email.parser.BytesFeedParser(_factory=email.message.Message) Works exactly like FeedParser except that the input to the feed() method must be bytes and not string. New in version 3.2.

nntplib.NNTP.help()

NNTP.help(*, file=None) Send a HELP command. Return a pair (response, list) where list is a list of help strings.

unittest.TestCase

class unittest.TestCase(methodName='runTest') Instances of the TestCase class represent the logical test units in the unittest universe. This class is intended to be used as a base class, with specific tests being implemented by concrete subclasses. This class implements the interface needed by the test runner to allow it to drive the tests, and methods that the test code can use to check for and report various kinds of failure. Each instance of TestCase will run a single base method: the me

http.server.BaseHTTPRequestHandler.protocol_version

protocol_version This specifies the HTTP protocol version used in responses. If set to 'HTTP/1.1', the server will permit HTTP persistent connections; however, your server must then include an accurate Content-Length header (using send_header()) in all of its responses to clients. For backwards compatibility, the setting defaults to 'HTTP/1.0'.

xml.sax.xmlreader.Attributes.getType()

Attributes.getType(name) Returns the type of the attribute name, which is normally 'CDATA'.

http.cookiejar.Cookie.comment

Cookie.comment String comment from the server explaining the function of this cookie, or None.

dis.Instruction.starts_line

starts_line line started by this opcode (if any), otherwise None

logging.config.stopListening()

logging.config.stopListening() Stops the listening server which was created with a call to listen(). This is typically called before calling join() on the return value from listen().