xml.sax.xmlreader.Attributes.getType()

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

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'.

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

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.

inspect.isgeneratorfunction()

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

pyclbr.Class.file

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

ssl.OP_NO_TLSv1

ssl.OP_NO_TLSv1 Prevents a TLSv1 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23. It prevents the peers from choosing TLSv1 as the protocol version. New in version 3.2.

xdrlib.Unpacker.unpack_fopaque()

Unpacker.unpack_fopaque(n) Unpacks and returns a fixed length opaque data stream, similarly to unpack_fstring().

ctypes.c_int8

class ctypes.c_int8 Represents the C 8-bit signed int datatype. Usually an alias for c_byte.