urllib.request.Request.has_header()

Request.has_header(header) Return whether the instance has the named header (checks both regular and unredirected).

datetime.datetime.timetz()

datetime.timetz() Return time object with same hour, minute, second, microsecond, and tzinfo attributes. See also method time().

urllib.request.CacheFTPHandler.setTimeout()

CacheFTPHandler.setTimeout(t) Set timeout of connections to t seconds.

http.client.responses

http.client.responses This dictionary maps the HTTP 1.1 status codes to the W3C names. Example: http.client.responses[http.client.NOT_FOUND] is 'Not Found'.

threading.Condition

class threading.Condition(lock=None) This class implements condition variable objects. A condition variable allows one or more threads to wait until they are notified by another thread. If the lock argument is given and not None, it must be a Lock or RLock object, and it is used as the underlying lock. Otherwise, a new RLock object is created and used as the underlying lock. Changed in version 3.3: changed from a factory function to a class. acquire(*args) Acquire the underlying lock. T

ftplib.FTP_TLS.ccc()

FTP_TLS.ccc() Revert control channel back to plaintext. This can be useful to take advantage of firewalls that know how to handle NAT with non-secure FTP without opening fixed ports. New in version 3.3.

email.generator.BytesGenerator.write()

write(s) Write the string s to the underlying file object. s is encoded using the ASCII codec and written to the write method of the outfp outfp passed to the BytesGenerator‘s constructor. This provides just enough file-like API for BytesGenerator instances to be used in the print() function.

ctypes.GetLastError()

ctypes.GetLastError() Windows only: Returns the last error code set by Windows in the calling thread. This function calls the Windows GetLastError() function directly, it does not return the ctypes-private copy of the error code.

unittest.installHandler()

unittest.installHandler() Install the control-c handler. When a signal.SIGINT is received (usually in response to the user pressing control-c) all registered results have stop() called.

keyword.iskeyword()

keyword.iskeyword(s) Return true if s is a Python keyword.