urllib.request.URLopener.open_unknown()

open_unknown(fullurl, data=None) Overridable interface to open unknown URL types.

datetime.time.__format__()

time.__format__(format) Same as time.strftime(). This makes it possible to specify a format string for a time object when using str.format(). For a complete list of formatting directives, see strftime() and strptime() Behavior.

ssl.SSLError.reason

reason A string mnemonic designating the reason this error occurred, for example CERTIFICATE_VERIFY_FAILED. The range of possible values depends on the OpenSSL version. New in version 3.3.

curses.ascii.isgraph()

curses.ascii.isgraph(c) Checks for ASCII any printable character except space.

socketserver.BaseServer.handle_timeout()

handle_timeout() This function is called when the timeout attribute has been set to a value other than None and the timeout period has passed with no requests being received. The default action for forking servers is to collect the status of any child processes that have exited, while in threading servers this method does nothing.

faulthandler.unregister()

faulthandler.unregister(signum) Unregister a user signal: uninstall the handler of the signum signal installed by register(). Return True if the signal was registered, False otherwise. Not available on Windows.

os.umask()

os.umask(mask) Set the current numeric umask and return the previous umask.

shelve.Shelf

class shelve.Shelf(dict, protocol=None, writeback=False, keyencoding='utf-8') A subclass of collections.abc.MutableMapping which stores pickled values in the dict object. By default, version 3 pickles are used to serialize values. The version of the pickle protocol can be specified with the protocol parameter. See the pickle documentation for a discussion of the pickle protocols. If the writeback parameter is True, the object will hold a cache of all entries accessed and write them back to t

audioop.maxpp()

audioop.maxpp(fragment, width) Return the maximum peak-peak value in the sound fragment.

curses.typeahead()

curses.typeahead(fd) Specify that the file descriptor fd be used for typeahead checking. If fd is -1, then no typeahead checking is done. The curses library does “line-breakout optimization” by looking for typeahead periodically while updating the screen. If input is found, and it is coming from a tty, the current update is postponed until refresh or doupdate is called again, allowing faster response to commands typed in advance. This function allows specifying a different file descriptor fo