filecmp.dircmp.report()

report() Print (to sys.stdout) a comparison between a and b.

ossaudiodev.oss_audio_device.reset()

oss_audio_device.reset() Immediately stop playing or recording and return the device to a state where it can accept commands. The OSS documentation recommends closing and re-opening the device after calling reset().

curses.window.syncup()

window.syncup() Touch all locations in ancestors of the window that have been changed in the window.

os.cpu_count()

os.cpu_count() Return the number of CPUs in the system. Returns None if undetermined. New in version 3.4.

object.__getnewargs__()

object.__getnewargs__() This method serve a similar purpose as __getnewargs_ex__() but for protocols 2 and newer. It must return a tuple of arguments args which will be passed to the __new__() method upon unpickling. In protocols 4 and newer, __getnewargs__() will not be called if __getnewargs_ex__() is defined.

xml.parsers.expat.xmlparser.specified_attributes

xmlparser.specified_attributes If set to a non-zero integer, the parser will report only those attributes which were specified in the document instance and not those which were derived from attribute declarations. Applications which set this need to be especially careful to use what additional information is available from the declarations as needed to comply with the standards for the behavior of XML processors. By default, this attribute is false; it may be changed at any time.

ipaddress.IPv4Network.prefixlen

prefixlen Length of the network prefix, in bits.

profile.Profile

class profile.Profile(timer=None, timeunit=0.0, subcalls=True, builtins=True) This class is normally only used if more precise control over profiling is needed than what the cProfile.run() function provides. A custom timer can be supplied for measuring how long code takes to run via the timer argument. This must be a function that returns a single number representing the current time. If the number is an integer, the timeunit specifies a multiplier that specifies the duration of each unit of

codecs.StreamReader.readline()

readline([size[, keepends]]) Read one line from the input stream and return the decoded data. size, if given, is passed as size argument to the stream’s read() method. If keepends is false line-endings will be stripped from the lines returned.

socket.getfqdn()

socket.getfqdn([name]) Return a fully qualified domain name for name. If name is omitted or empty, it is interpreted as the local host. To find the fully qualified name, the hostname returned by gethostbyaddr() is checked, followed by aliases for the host, if available. The first name which includes a period is selected. In case no fully qualified domain name is available, the hostname as returned by gethostname() is returned.