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.

tarfile.is_tarfile()

tarfile.is_tarfile(name) Return True if name is a tar archive file, that the tarfile module can read.

codecs.backslashreplace_errors()

codecs.backslashreplace_errors(exception) Implements the 'backslashreplace' error handling (for text encodings only): malformed data is replaced by a backslashed escape sequence.

asyncio.AbstractEventLoop.get_exception_handler()

AbstractEventLoop.get_exception_handler() Return the exception handler, or None if the default one is in use. New in version 3.5.2.