html.entities.name2codepoint

html.entities.name2codepoint A dictionary that maps HTML entity names to the Unicode code points.

ossaudiodev.oss_audio_device.fileno()

oss_audio_device.fileno() Return the file descriptor associated with the device.

random.setstate()

random.setstate(state) state should have been obtained from a previous call to getstate(), and setstate() restores the internal state of the generator to what it was at the time getstate() was called.

codecs.IncrementalEncoder.encode()

encode(object[, final]) Encodes object (taking the current state of the encoder into account) and returns the resulting encoded object. If this is the last call to encode() final must be true (the default is false).

KeyboardInterrupt

exception KeyboardInterrupt Raised when the user hits the interrupt key (normally Control-C or Delete). During execution, a check for interrupts is made regularly. The exception inherits from BaseException so as to not be accidentally caught by code that catches Exception and thus prevent the interpreter from exiting.

ipaddress.v6_int_to_packed()

ipaddress.v6_int_to_packed(address) Represent an address as 16 packed bytes in network (big-endian) order. address is an integer representation of an IPv6 IP address. A ValueError is raised if the integer is negative or too large to be an IPv6 IP address.

mailbox.mboxMessage.add_flag()

add_flag(flag) Set the flag(s) specified by flag without changing other flags. To add more than one flag at a time, flag may be a string of more than one character.

asyncio.Queue.get()

coroutine get() Remove and return an item from the queue. If queue is empty, wait until an item is available. This method is a coroutine. See also The empty() method.

ssl.RAND_egd()

ssl.RAND_egd(path) If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket connection open to it, this will read 256 bytes of randomness from the socket, and add it to the SSL pseudo-random number generator to increase the security of generated secret keys. This is typically only necessary on systems without better sources of randomness. See http://egd.sourceforge.net/ or http://prngd.sourceforge.net/ for sources of entropy-gathering daemons. Avai

codecs.StreamWriter.reset()

reset() Flushes and resets the codec buffers used for keeping state. Calling this method should ensure that the data on the output is put into a clean state that allows appending of new fresh data without having to rescan the whole stream to recover state.