os.WTERMSIG()
  • References/Python/Python/Operating System

os.WTERMSIG(status) Return the signal which caused the process to exit. Availability: Unix.

2025-01-10 15:47:30
pydoc
  • References/Python/Python/Development Tools

Source code: Lib/pydoc.py

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

formatyear(theyear, width=3) Return a year’s calendar as an HTML table. width (defaulting to 3) specifies the number

2025-01-10 15:47:30
bdb.Bdb.get_stack()
  • References/Python/Python/Debugging & Profiling

get_stack(f, t) Get a list of records for a frame and all higher (calling) and lower frames, and the size of the higher part

2025-01-10 15:47:30
dbm.ndbm.open()
  • References/Python/Python/Data Persistence

dbm.ndbm.open(filename[, flag[, mode]]) Open a dbm database and return a ndbm object. The filename argument

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

platform.version() Returns the system’s release version, e.g. '#3 on degas'. An empty string is returned if the

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

ctypes.memset(dst, c, count) Same as the standard C memset library function: fills the memory block at address dst

2025-01-10 15:47:30
sys.path_importer_cache
  • References/Python/Python/Runtime

sys.path_importer_cache A dictionary acting as a cache for finder objects. The keys are

2025-01-10 15:47:30
pathlib.Path.touch()
  • References/Python/Python/File & Directory Access

Path.touch(mode=0o666, exist_ok=True) Create a file at this given path. If mode is given, it is combined with the process’

2025-01-10 15:47:30
poplib.POP3.stat()
  • References/Python/Python/Internet

POP3.stat() Get mailbox status. The result is a tuple of 2 integers: (message count, mailbox size).

2025-01-10 15:47:30