asyncio.asyncio.subprocess.Process.kill()

kill() Kills the child. On Posix OSs the function sends SIGKILL to the child. On Windows kill() is an alias for terminate().

urllib.parse.SplitResultBytes

class urllib.parse.SplitResultBytes(scheme, netloc, path, query, fragment) Concrete class for urlsplit() results containing bytes data. The decode() method returns a SplitResult instance. New in version 3.2.

bytearray.partition()

bytearray.partition(sep) Split the sequence at the first occurrence of sep, and return a 3-tuple containing the part before the separator, the separator, and the part after the separator. If the separator is not found, return a 3-tuple containing a copy of the original sequence, followed by two empty bytes or bytearray objects. The separator to search for may be any bytes-like object.

ssl.SSLError.library

library A string mnemonic designating the OpenSSL submodule in which the error occurred, such as SSL, PEM or X509. The range of possible values depends on the OpenSSL version. New in version 3.3.

multiprocessing.BoundedSemaphore

class multiprocessing.BoundedSemaphore([value]) A bounded semaphore object: a close analog of threading.BoundedSemaphore. A solitary difference from its close analog exists: its acquire method’s first argument is named block, as is consistent with Lock.acquire(). Note On Mac OS X, this is indistinguishable from Semaphore because sem_getvalue() is not implemented on that platform.

unicodedata.east_asian_width()

unicodedata.east_asian_width(chr) Returns the east asian width assigned to the character chr as string.

logging.handlers.NTEventLogHandler.emit()

emit(record) Determines the message ID, event category and event type, and then logs the message in the NT event log.

socket.sethostname()

socket.sethostname(name) Set the machine’s hostname to name. This will raise an OSError if you don’t have enough rights. Availability: Unix. New in version 3.3.

email.headerregistry.HeaderRegistry.map_to_type()

map_to_type(self, name, cls) name is the name of the header to be mapped. It will be converted to lower case in the registry. cls is the specialized class to be used, along with base_class, to create the class used to instantiate headers that match name.

tracemalloc.get_object_traceback()

tracemalloc.get_object_traceback(obj) Get the traceback where the Python object obj was allocated. Return a Traceback instance, or None if the tracemalloc module is not tracing memory allocations or did not trace the allocation of the object. See also gc.get_referrers() and sys.getsizeof() functions.