socketserver.StreamRequestHandler

class socketserver.StreamRequestHandler class socketserver.DatagramRequestHandler These BaseRequestHandler subclasses override the setup() and finish() methods, and provide self.rfile and self.wfile attributes. The self.rfile and self.wfile attributes can be read or written, respectively, to get the request data or return data to the client.

bdb.Bdb.do_clear()

do_clear(arg) Handle how a breakpoint must be removed when it is a temporary one. This method must be implemented by derived classes.

sysconfig.get_paths()

sysconfig.get_paths([scheme[, vars[, expand]]]) Return a dictionary containing all installation paths corresponding to an installation scheme. See get_path() for more information. If scheme is not provided, will use the default scheme for the current platform. If vars is provided, it must be a dictionary of variables that will update the dictionary used to expand the paths. If expand is set to False, the paths will not be expanded. If scheme is not an existing scheme, get_paths() will raise

ctypes.c_int32

class ctypes.c_int32 Represents the C 32-bit signed int datatype. Usually an alias for c_int.

unittest.TestCase.assertIn()

assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) Test that first is (or is not) in second. New in version 3.1.

ProcessLookupError

exception ProcessLookupError Raised when a given process doesn’t exist. Corresponds to errno ESRCH.

doctest.DocTestParser.parse()

parse(string, name='') Divide the given string into examples and intervening text, and return them as a list of alternating Examples and strings. Line numbers for the Examples are 0-based. The optional argument name is a name identifying this string, and is only used for error messages.

asyncio.QueueFull

exception asyncio.QueueFull Exception raised when the put_nowait() method is called on a Queue object which is full.

curses.window.nodelay()

window.nodelay(yes) If yes is 1, getch() will be non-blocking.

unittest.TestCase.assertSequenceEqual()

assertSequenceEqual(first, second, msg=None, seq_type=None) Tests that two sequences are equal. If a seq_type is supplied, both first and second must be instances of seq_type or a failure will be raised. If the sequences are different an error message is constructed that shows the difference between the two. This method is not called directly by assertEqual(), but it’s used to implement assertListEqual() and assertTupleEqual(). New in version 3.1.