ipaddress.IPv6Network.with_prefixlen

with_prefixlen

operator.__setitem__()

operator.__setitem__(a, b, c) Set the value of a at index b to c.

stringprep.in_table_c9()

stringprep.in_table_c9(code) Determine whether code is in tableC.9 (Tagging characters).

bytearray.fromhex()

classmethod bytearray.fromhex(string) This bytearray class method returns bytearray object, decoding the given string object. The string must contain two hexadecimal digits per byte, with ASCII spaces being ignored. >>> bytearray.fromhex('2Ef0 F1f2 ') bytearray(b'.\xf0\xf1\xf2')

aifc.aifc.writeframesraw()

aifc.writeframesraw(data) Like writeframes(), except that the header of the audio file is not updated. Changed in version 3.4: Any bytes-like object is now accepted.

logging.handlers.TimedRotatingFileHandler.emit()

emit(record) Outputs the record to the file, catering for rollover as described above.

ssl.SSLContext.verify_flags

SSLContext.verify_flags The flags for certificate verification operations. You can set flags like VERIFY_CRL_CHECK_LEAF by ORing them together. By default OpenSSL does neither require nor verify certificate revocation lists (CRLs). Available only with openssl version 0.9.8+. New in version 3.4.

threading.Barrier.parties

parties The number of threads required to pass the barrier.

importlib.machinery.SourcelessFileLoader.get_code()

get_code(fullname) Returns the code object for name created from path.

calendar.Calendar.monthdays2calendar()

monthdays2calendar(year, month) Return a list of the weeks in the month month of the year as full weeks. Weeks are lists of seven tuples of day numbers and weekday numbers.