turtle.mode()

turtle.mode(mode=None) Parameters: mode – one of the strings “standard”, “logo” or “world” Set turtle mode (“standard”, “logo” or “world”) and perform reset. If mode is not given, current mode is returned. Mode “standard” is compatible with old turtle. Mode “logo” is compatible with most Logo turtle graphics. Mode “world” uses user-defined “world coordinates”. Attention: in this mode angles appear distorted if x/y unit-ratio doesn’t equal 1. Mode Initial turtle heading positive angles “st

socket.inet_ntop()

socket.inet_ntop(address_family, packed_ip) Convert a packed IP address (a bytes-like object of some number of bytes) to its standard, family-specific string representation (for example, '7.10.0.5' or '5aef:2b::8'). inet_ntop() is useful when a library or network protocol returns an object of type struct in_addr (similar to inet_ntoa()) or struct in6_addr. Supported values for address_family are currently AF_INET and AF_INET6. If the bytes object packed_ip is not the correct length for the s

logging.handlers.BaseRotatingHandler.rotate()

rotate(source, dest) When rotating, rotate the current log. The default implementation calls the ‘rotator’ attribute of the handler, if it’s callable, passing the source and dest arguments to it. If the attribute isn’t callable (the default is None), the source is simply renamed to the destination. Parameters: source – The source filename. This is normally the base filename, e.g. ‘test.log’. dest – The destination filename. This is normally what the source is rotated to, e.g. ‘test.log.1’

tarfile.TarFile.list()

TarFile.list(verbose=True, *, members=None) Print a table of contents to sys.stdout. If verbose is False, only the names of the members are printed. If it is True, output similar to that of ls -l is produced. If optional members is given, it must be a subset of the list returned by getmembers(). Changed in version 3.5: Added the members parameter.

http.server.BaseHTTPRequestHandler.log_date_time_string()

log_date_time_string() Returns the current date and time, formatted for logging.

msilib.View.Modify()

View.Modify(kind, data) Modify the view, by calling MsiViewModify(). kind can be one of MSIMODIFY_SEEK, MSIMODIFY_REFRESH, MSIMODIFY_INSERT, MSIMODIFY_UPDATE, MSIMODIFY_ASSIGN, MSIMODIFY_REPLACE, MSIMODIFY_MERGE, MSIMODIFY_DELETE, MSIMODIFY_INSERT_TEMPORARY, MSIMODIFY_VALIDATE, MSIMODIFY_VALIDATE_NEW, MSIMODIFY_VALIDATE_FIELD, or MSIMODIFY_VALIDATE_DELETE. data must be a record describing the new data.

email.generator.BytesGenerator.clone()

clone(fp) Return an independent clone of this BytesGenerator instance with the exact same options.

wsgiref.handlers.BaseHandler.get_stdin()

get_stdin() Return an input stream object suitable for use as the wsgi.input of the request currently being processed.

selectors.SelectorKey.fileobj

fileobj File object registered.

os.stat_result.st_blocks

st_blocks Number of 512-byte blocks allocated for file. This may be smaller than st_size/512 when the file has holes.