http.HTTPStatus

class http.HTTPStatus New in version 3.5. A subclass of enum.IntEnum that defines a set of HTTP status codes, reason phrases and long descriptions written in English. Usage: >>> from http import HTTPStatus >>> HTTPStatus.OK <HTTPStatus.OK: 200> >>> HTTPStatus.OK == 200 True >>> http.HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK' >>> HTTPStatus.OK.description 'Request fulfilled, document follows' >>> list(HTTPStatus

mailbox.BabylMessage.remove_label()

remove_label(label) Remove label from the list of labels on the message.

urllib.request.FancyURLopener.prompt_user_passwd()

prompt_user_passwd(host, realm) Return information needed to authenticate the user at the given host in the specified security realm. The return value should be a tuple, (user, password), which can be used for basic authentication. The implementation prompts for this information on the terminal; an application should override this method to use an appropriate interaction model in the local environment.

multiprocessing.SimpleQueue

class multiprocessing.SimpleQueue It is a simplified Queue type, very close to a locked Pipe. empty() Return True if the queue is empty, False otherwise. get() Remove and return an item from the queue. put(item) Put item into the queue.

cmd.Cmd.undoc_header

Cmd.undoc_header The header to issue if the help output has a section for undocumented commands (that is, there are do_*() methods without corresponding help_*() methods).

msilib.View.Fetch()

View.Fetch() Return a result record of the query, through calling MsiViewFetch().

http.cookies.BaseCookie

class http.cookies.BaseCookie([input]) This class is a dictionary-like object whose keys are strings and whose values are Morsel instances. Note that upon setting a key to a value, the value is first converted to a Morsel containing the key and the value. If input is given, it is passed to the load() method.

wsgiref.handlers.BaseHandler.sendfile()

sendfile() Override to implement platform-specific file transmission. This method is called only if the application’s return value is an instance of the class specified by the wsgi_file_wrapper attribute. It should return a true value if it was able to successfully transmit the file, so that the default transmission code will not be executed. The default implementation of this method just returns a false value.

cmath.tanh()

cmath.tanh(x) Return the hyperbolic tangent of x.

platform.version()

platform.version() Returns the system’s release version, e.g. '#3 on degas'. An empty string is returned if the value cannot be determined.