io.TextIOBase.encoding
  • References/Python/Python/Operating System

encoding The name of the encoding used to decode the stream’s bytes into strings, and to encode strings into bytes.

2025-01-10 15:47:30
xml.etree.ElementTree.XMLParser.feed()
  • References/Python/Python/Structured Markup

feed(data) Feeds data to the parser. data is encoded data.

2025-01-10 15:47:30
uuid.UUID.bytes_le
  • References/Python/Python/Internet

UUID.bytes_le The UUID as a 16-byte string (with time_low, time_mid, and time_hi_version in little-endian

2025-01-10 15:47:30
email.utils.encode_rfc2231()
  • References/Python/Python/Internet Data

email.utils.encode_rfc2231(s, charset=None, language=None) Encode the string s according to

2025-01-10 15:47:30
threading.RLock
  • References/Python/Python/Concurrent Execution

class threading.RLock This class implements reentrant lock objects. A reentrant lock must be released by the thread that acquired

2025-01-10 15:47:30
itertools.permutations()
  • References/Python/Python/Functional Programming

itertools.permutations(iterable, r=None) Return successive r length permutations of elements in the iterable

2025-01-10 15:47:30
pprint.pprint()
  • References/Python/Python/Data Types

pprint.pprint(object, stream=None, indent=1, width=80, depth=None, *, compact=False) Prints the formatted representation of

2025-01-10 15:47:30
os.path.samefile()
  • References/Python/Python/File & Directory Access

os.path.samefile(path1, path2) Return True if both pathname arguments refer to the same file or directory. This

2025-01-10 15:47:30
mimetypes.add_type()
  • References/Python/Python/Internet Data

mimetypes.add_type(type, ext, strict=True) Add a mapping from the MIME type type to the extension ext. When

2025-01-10 15:47:30
netrc.netrc
  • References/Python/Python/File Formats

class netrc.netrc([file]) A netrc instance or subclass instance encapsulates data from a netrc file. The initialization

2025-01-10 15:47:30