fileinput.hook_encoded()
  • References/Python/Python/File & Directory Access

fileinput.hook_encoded(encoding) Returns a hook which opens each file with

2025-01-10 15:47:30
time.timezone
  • References/Python/Python/Operating System

time.timezone The offset of the local (non-DST) timezone, in seconds west of UTC (negative in most of Western Europe, positive

2025-01-10 15:47:30
zlib.error
  • References/Python/Python/Data Compression

exception zlib.error Exception raised on compression and decompression errors.

2025-01-10 15:47:30
smtpd.SMTPChannel
  • References/Python/Python/Internet

class smtpd.SMTPChannel(server, conn, addr, data_size_limit=33554432, map=None, enable_SMTPUTF8=False, decode_data=True) Create

2025-01-10 15:47:30
os.renames()
  • References/Python/Python/Operating System

os.renames(old, new) Recursive directory or file renaming function. Works like rename(), except creation of any

2025-01-10 15:47:30
multiprocessing.SimpleQueue
  • References/Python/Python/Concurrent Execution

class multiprocessing.SimpleQueue It is a simplified Queue type, very close to a locked Pipe.

2025-01-10 15:47:30
bytes.zfill()
  • References/Python/Python/Built-in Types

bytes.zfill(width) bytearray.zfill(width) Return a copy of the sequence left filled with ASCII b'0'

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /= b.

2025-01-10 15:47:30
exit
  • References/Python/Python/Built-in Constants

exit(code=None) Objects that when printed, print a message like “Use quit() or Ctrl-D (i.e. EOF) to exit”, and when called,

2025-01-10 15:47:30
bytearray.isalnum()
  • References/Python/Python/Built-in Types

bytearray.isalnum() Return true if all bytes in the sequence are alphabetical ASCII characters or ASCII decimal digits and the

2025-01-10 15:47:30