locale.str()

locale.str(float) Formats a floating point number using the same format as the built-in function str(float), but takes the decimal point into account.

typing.SupportsRound

class typing.SupportsRound An ABC with one abstract method __round__ that is covariant in its return type.

mailbox.Babyl.get_labels()

get_labels() Return a list of the names of all user-defined labels used in the mailbox. Note The actual messages are inspected to determine which labels exist in the mailbox rather than consulting the list of labels in the Babyl options section, but the Babyl section is updated whenever the mailbox is modified.

ipaddress.IPv6Network.exploded

exploded

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.