nntplib.NNTPReplyError

exception nntplib.NNTPReplyError Exception raised when an unexpected reply is received from the server.

nntplib.NNTP.head()

NNTP.head(message_spec=None, *, file=None) Same as article(), but sends a HEAD command. The lines returned (or written to file) will only contain the message headers, not the body.

asyncio.Future.exception()

exception() Return the exception that was set on this future. The exception (or None if no exception was set) is returned only if the future is done. If the future has been cancelled, raises CancelledError. If the future isn’t done yet, raises InvalidStateError.

email.message.Message.set_default_type()

set_default_type(ctype) Set the default content type. ctype should either be text/plain or message/rfc822, although this is not enforced. The default content type is not stored in the Content-Type header.

socket.getdefaulttimeout()

socket.getdefaulttimeout() Return the default timeout in seconds (float) for new socket objects. A value of None indicates that new socket objects have no timeout. When the socket module is first imported, the default is None.

ossaudiodev.oss_audio_device.obufcount()

oss_audio_device.obufcount() Returns the number of samples that are in the hardware buffer yet to be played.

typing.Iterator

class typing.Iterator(Iterable[T_co]) A generic version of the collections.abc.Iterator.

threading.Barrier.broken

broken A boolean that is True if the barrier is in the broken state.

winreg.DeleteKeyEx()

winreg.DeleteKeyEx(key, sub_key, access=KEY_WOW64_64KEY, reserved=0) Deletes the specified key. Note The DeleteKeyEx() function is implemented with the RegDeleteKeyEx Windows API function, which is specific to 64-bit versions of Windows. See the RegDeleteKeyEx documentation. key is an already open key, or one of the predefined HKEY_* constants. sub_key is a string that must be a subkey of the key identified by the key parameter. This value must not be None, and the key may not have subkeys

xdrlib.Unpacker

class xdrlib.Unpacker(data) Unpacker is the complementary class which unpacks XDR data values from a string buffer. The input buffer is given as data.