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

os.getresgid() Return a tuple (rgid, egid, sgid) denoting the current process’s real, effective, and saved group ids.

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

window.standend() Turn off the standout attribute. On some terminals this has the side effect of turning off all attributes

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

os.stat(path, *, dir_fd=None, follow_symlinks=True) Get the status of a file or a file descriptor. Perform the equivalent of

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

os.getuid() Return the current process’s real user id. Availability: Unix.

2025-01-10 15:47:30
curses.panel.Panel.userptr()
  • References/Python/Python/Operating System

Panel.userptr() Returns the user pointer for the panel. This might be any Python object.

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

time.mktime(t) This is the inverse function of localtime(). Its argument is the struct_time or full

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

ctypes.util.find_library(name) Try to find a library and return a pathname. name is the library name without any prefix

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

class argparse.Action(option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, metavar=None)

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

os.cpu_count() Return the number of CPUs in the system. Returns None if undetermined.

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

window.bkgd(ch[, attr]) Set the background property of the window to the character ch, with attributes attr

2025-01-10 15:47:30