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.
exception TabError Raised when indentation contains an inconsistent use of tabs and spaces. This is a subclass of IndentationError.
Cookie.set_nonstandard_attr(name, value) Set the value of the named cookie-attribute.
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'
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(x) Return the natural logarithm of the absolute value of the Gamma function at x. New in version 3.2.
report_partial_closure() Print a comparison between a and b and common immediate subdirectories.
Cmd.prompt The prompt issued to solicit input.
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.
class ctypes.c_ulonglong Represents the C unsigned long long datatype. The constructor accepts an optional integer initializer; no overflow checking is done.
Page 161 of 663