logging.handlers.TimedRotatingFileHandler.emit()

emit(record) Outputs the record to the file, catering for rollover as described above.

ssl.SSLContext.verify_flags

SSLContext.verify_flags The flags for certificate verification operations. You can set flags like VERIFY_CRL_CHECK_LEAF by ORing them together. By default OpenSSL does neither require nor verify certificate revocation lists (CRLs). Available only with openssl version 0.9.8+. New in version 3.4.

urllib.request.Request.has_header()

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

calendar.Calendar.monthdays2calendar()

monthdays2calendar(year, month) Return a list of the weeks in the month month of the year as full weeks. Weeks are lists of seven tuples of day numbers and weekday numbers.

gettext.GNUTranslations.lgettext()

GNUTranslations.lgettext(message) Equivalent to gettext(), but the translation is returned as a bytestring encoded in the selected output charset, or in the preferred system encoding if no encoding was explicitly set with set_output_charset().

tarfile.TarInfo.islnk()

TarInfo.islnk() Return True if it is a hard link.

multiprocessing.RLock.acquire()

acquire(block=True, timeout=None) Acquire a lock, blocking or non-blocking. When invoked with the block argument set to True, block until the lock is in an unlocked state (not owned by any process or thread) unless the lock is already owned by the current process or thread. The current process or thread then takes ownership of the lock (if it does not already have ownership) and the recursion level inside the lock increments by one, resulting in a return value of True. Note that there are se

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'.