telnetlib.Telnet.close()

Telnet.close() Close the connection.

decimal.Context.clear_traps()

clear_traps() Resets all of the traps to 0. New in version 3.3.

configparser.ConfigParser.getint()

getint(section, option, *, raw=False, vars=None[, fallback]) A convenience method which coerces the option in the specified section to an integer. See get() for explanation of raw, vars and fallback.

dis.Instruction.argrepr

argrepr human readable description of operation argument

xdrlib.Packer.pack_fstring()

Packer.pack_fstring(n, s) Packs a fixed length string, s. n is the length of the string but it is not packed into the data buffer. The string is padded with null bytes if necessary to guaranteed 4 byte alignment.

xdrlib.ConversionError

exception xdrlib.ConversionError Class derived from Error. Contains no additional instance variables.

curses.window.untouchwin()

window.untouchwin() Mark all lines in the window as unchanged since the last call to refresh().

asyncio.ReadTransport.resume_reading()

resume_reading() Resume the receiving end. The protocol’s data_received() method will be called once again if some data is available for reading.

dbm.open()

dbm.open(file, flag='r', mode=0o666) Open the database file file and return a corresponding object. If the database file already exists, the whichdb() function is used to determine its type and the appropriate module is used; if it does not exist, the first module listed above that can be imported is used. The optional flag argument can be: Value Meaning 'r' Open existing database for reading only (default) 'w' Open existing database for reading and writing 'c' Open database for reading and

unittest.TestCase.assertIsNotNone()

assertIsNotNone(expr, msg=None) Test that expr is (or is not) None. New in version 3.1.