os.stat_result.st_mode

st_mode File mode: file type and file mode bits (permissions).

mimetypes.MimeTypes.guess_all_extensions()

MimeTypes.guess_all_extensions(type, strict=True) Similar to the guess_all_extensions() function, using the tables stored as part of the object.

nntplib.NNTPDataError

exception nntplib.NNTPDataError Exception raised when there is some error in the response data.

argparse.Action

class argparse.Action(option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, metavar=None)

base64.b85decode()

base64.b85decode(b) Decode the base85-encoded bytes-like object or ASCII string b and return the decoded bytes. Padding is implicitly removed, if necessary. New in version 3.4.

uuid.uuid1()

uuid.uuid1(node=None, clock_seq=None) Generate a UUID from a host ID, sequence number, and the current time. If node is not given, getnode() is used to obtain the hardware address. If clock_seq is given, it is used as the sequence number; otherwise a random 14-bit sequence number is chosen.

nntplib.NNTP.group()

NNTP.group(name) Send a GROUP command, where name is the group name. The group is selected as the current group, if it exists. Return a tuple (response, count, first, last, name) where count is the (estimated) number of articles in the group, first is the first article number in the group, last is the last article number in the group, and name is the group name.

http.server.BaseHTTPRequestHandler.send_response_only()

send_response_only(code, message=None) Sends the response header only, used for the purposes when 100 Continue response is sent by the server to the client. The headers not buffered and sent directly the output stream.If the message is not specified, the HTTP message corresponding the response code is sent. New in version 3.2.

logging.error()

logging.error(msg, *args, **kwargs) Logs a message with level ERROR on the root logger. The arguments are interpreted as for debug().

binascii.b2a_uu()

binascii.b2a_uu(data) Convert binary data to a line of ASCII characters, the return value is the converted line, including a newline char. The length of data should be at most 45.