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

os.abort() Generate a SIGABRT signal to the current process. On Unix, the default behavior is to produce a core

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

os.statvfs(path) Perform a statvfs() system call on the given path. The return value is an object whose attributes

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

os.unsetenv(key) Unset (delete) the environment variable named key. Such changes to the environment affect subprocesses

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

ctypes.sizeof(obj_or_type) Returns the size in bytes of a ctypes type or instance memory buffer. Does the same as the C sizeof

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

class ctypes.c_int64 Represents the C 64-bit signed int datatype. Usually an alias for c_longlong

2025-01-10 15:47:30
curses.window.idcok()
  • References/Python/Python/Operating System

window.idcok(flag) If flag is False, curses no longer considers using the hardware insert/delete character

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

os.tcgetpgrp(fd) Return the process group associated with the terminal given by fd (an open file descriptor as returned

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

class ctypes._SimpleCData This non-public class is the base class of all fundamental ctypes data types. It is mentioned here

2025-01-10 15:47:30
curses.window.insnstr()
  • References/Python/Python/Operating System

window.insnstr(str, n[, attr]) window.insnstr(y, x, str, n[, attr]) Insert a character string (as many characters

2025-01-10 15:47:30
curses.window.getbkgd()
  • References/Python/Python/Operating System

window.getbkgd() Return the given window’s current background character/attribute pair.

2025-01-10 15:47:30