codecs.CodecInfo.incrementalencoder

incrementalencoder incrementaldecoder Incremental encoder and decoder classes or factory functions. These have to provide the interface defined by the base classes IncrementalEncoder and IncrementalDecoder, respectively. Incremental codecs can maintain state.

xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_name()

DocCGIXMLRPCRequestHandler.set_server_name(server_name) Set the name used in the generated HTML documentation. This name will appear at the top of the generated documentation inside a “h1” element.

logging.handlers.TimedRotatingFileHandler

class logging.handlers.TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False, atTime=None) Returns a new instance of the TimedRotatingFileHandler class. The specified file is opened and used as the stream for logging. On rotating it also sets the filename suffix. Rotating happens based on the product of when and interval. You can use the when to specify the type of interval. The list of possible values is below. Note that they are not c

turtle.fd()

turtle.fd(distance) Parameters: distance – a number (integer or float) Move the turtle forward by the specified distance, in the direction the turtle is headed. >>> turtle.position() (0.00,0.00) >>> turtle.forward(25) >>> turtle.position() (25.00,0.00) >>> turtle.forward(-75) >>> turtle.position() (-50.00,0.00)

importlib.machinery.ExtensionFileLoader.name

name Name of the module the loader supports.

binascii.a2b_qp()

binascii.a2b_qp(data, header=False) Convert a block of quoted-printable data back to binary and return the binary data. More than one line may be passed at a time. If the optional argument header is present and true, underscores will be decoded as spaces.

mailbox.MMDF.lock()

lock() unlock() Three locking mechanisms are used—dot locking and, if available, the flock() and lockf() system calls.

wave.Wave_read.setpos()

Wave_read.setpos(pos) Set the file pointer to the specified position.

asyncio.BaseSubprocessTransport.kill()

kill(self) Kill the subprocess, as in subprocess.Popen.kill(). On POSIX systems, the function sends SIGKILL to the subprocess. On Windows, this method is an alias for terminate().

operator.sub()

operator.sub(a, b) operator.__sub__(a, b) Return a - b.