socket.getservbyname()

socket.getservbyname(servicename[, protocolname]) Translate an Internet service name and protocol name to a port number for that service. The optional protocol name, if given, should be 'tcp' or 'udp', otherwise any protocol will match.

TabError

exception TabError Raised when indentation contains an inconsistent use of tabs and spaces. This is a subclass of IndentationError.

http.cookiejar.Cookie.set_nonstandard_attr()

Cookie.set_nonstandard_attr(name, value) Set the value of the named cookie-attribute.

argparse.ArgumentParser.get_default()

ArgumentParser.get_default(dest) Get the default value for a namespace attribute, as set by either add_argument() or by set_defaults(): >>> parser = argparse.ArgumentParser() >>> parser.add_argument('--foo', default='badger') >>> parser.get_default('foo') 'badger'

unittest.TestResult.buffer

buffer If set to true, sys.stdout and sys.stderr will be buffered in between startTest() and stopTest() being called. Collected output will only be echoed onto the real sys.stdout and sys.stderr if the test fails or errors. Any output is also attached to the failure / error message. New in version 3.2.

math.lgamma()

math.lgamma(x) Return the natural logarithm of the absolute value of the Gamma function at x. New in version 3.2.

filecmp.dircmp.report_partial_closure()

report_partial_closure() Print a comparison between a and b and common immediate subdirectories.

cmd.Cmd.prompt

Cmd.prompt The prompt issued to solicit input.

sys.abiflags

sys.abiflags On POSIX systems where Python was built with the standard configure script, this contains the ABI flags as specified by PEP 3149. New in version 3.2.

ctypes.c_ulonglong

class ctypes.c_ulonglong Represents the C unsigned long long datatype. The constructor accepts an optional integer initializer; no overflow checking is done.