tkinter.tix.tixCommand.tix_configure()

tixCommand.tix_configure(cnf=None, **kw) Query or modify the configuration options of the Tix application context. If no option is specified, returns a dictionary all of the available options. If option is specified with no value, then the method returns a list describing the one named option (this list will be identical to the corresponding sublist of the value returned if no option is specified). If one or more option-value pairs are specified, then the method modifies the given option(s)

ftplib.FTP.mkd()

FTP.mkd(pathname) Create a new directory on the server.

multiprocessing.Queue.join_thread()

join_thread() Join the background thread. This can only be used after close() has been called. It blocks until the background thread exits, ensuring that all data in the buffer has been flushed to the pipe. By default if a process is not the creator of the queue then on exit it will attempt to join the queue’s background thread. The process can call cancel_join_thread() to make join_thread() do nothing.

subprocess.CompletedProcess.returncode

returncode Exit status of the child process. Typically, an exit status of 0 indicates that it ran successfully. A negative value -N indicates that the child was terminated by signal N (POSIX only).

math.sin()

math.sin(x) Return the sine of x radians.

curses.ascii.isalpha()

curses.ascii.isalpha(c) Checks for an ASCII alphabetic character; it is equivalent to isupper(c) or islower(c).

random.choice()

random.choice(seq) Return a random element from the non-empty sequence seq. If seq is empty, raises IndexError.

urllib.request.HTTPErrorProcessor.http_response()

HTTPErrorProcessor.http_response() Process HTTP error responses. For 200 error codes, the response object is returned immediately. For non-200 error codes, this simply passes the job on to the protocol_error_code() handler methods, via OpenerDirector.error(). Eventually, HTTPDefaultErrorHandler will raise an HTTPError if no other handler handles the error.

DeprecationWarning

exception DeprecationWarning Base class for warnings about deprecated features.

imaplib.IMAP4.expunge()

IMAP4.expunge() Permanently remove deleted items from selected mailbox. Generates an EXPUNGE response for each deleted message. Returned data contains a list of EXPUNGE message numbers in order received.