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

os.kill(pid, sig) Send signal sig to the process pid. Constants for the specific signals available on the

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

time.tzname A tuple of two strings: the first is the name of the local non-DST timezone, the second is the name of the local

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

os.getgrouplist(user, group) Return list of group ids that user belongs to. If group is not in the list, it

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

time.tzset() Resets the time conversion rules used by the library routines. The environment variable TZ specifies

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

platform.release() Returns the system’s release, e.g. '2.2.0' or 'NT' An empty string is returned

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

window.derwin(begin_y, begin_x) window.derwin(nlines, ncols, begin_y, begin_x) An abbreviation for “derive window”

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

window.touchline(start, count[, changed]) Pretend count lines have been changed, starting with line start

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

os.supports_bytes_environ True if the native OS type of the environment is bytes (eg. False on Windows)

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

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

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

os.access(path, mode, *, dir_fd=None, effective_ids=False, follow_symlinks=True) Use the real uid/gid to test for access to

2025-01-10 15:47:30