http.cookiejar.Cookie.port

Cookie.port String representing a port or a set of ports (eg. ‘80’, or ‘80,8080’), or None.

curses.textpad.Textbox.gather()

gather() Return the window contents as a string; whether blanks in the window are included is affected by the stripspaces member.

nntplib.NNTP.post()

NNTP.post(data) Post an article using the POST command. The data argument is either a file object opened for binary reading, or any iterable of bytes objects (representing raw lines of the article to be posted). It should represent a well-formed news article, including the required headers. The post() method automatically escapes lines beginning with . and appends the termination line. If the method succeeds, the server’s response is returned. If the server refuses posting, a NNTPReplyError

imaplib.IMAP4.error

exception IMAP4.error Exception raised on any errors. The reason for the exception is passed to the constructor as a string.

unicodedata.combining()

unicodedata.combining(chr) Returns the canonical combining class assigned to the character chr as integer. Returns 0 if no combining class is defined.

mmap.mmap.resize()

resize(newsize) Resizes the map and the underlying file, if any. If the mmap was created with ACCESS_READ or ACCESS_COPY, resizing the map will raise a TypeError exception.

importlib.machinery.ModuleSpec.origin

origin

inspect.Signature.bind_partial()

bind_partial(*args, **kwargs) Works the same way as Signature.bind(), but allows the omission of some required arguments (mimics functools.partial() behavior.) Returns BoundArguments, or raises a TypeError if the passed arguments do not match the signature.

turtle.screensize()

turtle.screensize(canvwidth=None, canvheight=None, bg=None) Parameters: canvwidth – positive integer, new width of canvas in pixels canvheight – positive integer, new height of canvas in pixels bg – colorstring or color-tuple, new background color If no arguments are given, return current (canvaswidth, canvasheight). Else resize the canvas the turtles are drawing on. Do not alter the drawing window. To observe hidden parts of the canvas, use the scrollbars. With this method, one can m

mailbox.MaildirMessage.get_flags()

get_flags() Return a string specifying the flags that are currently set. If the message complies with the standard Maildir format, the result is the concatenation in alphabetical order of zero or one occurrence of each of 'D', 'F', 'P', 'R', 'S', and 'T'. The empty string is returned if no flags are set or if “info” contains experimental semantics.