os.DirEntry.inode()
  • References/Python/Python/Operating System

inode() Return the inode number of the entry. The result is cached on the DirEntry

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

os.utime(path, times=None, *, [ns, ]dir_fd=None, follow_symlinks=True) Set the access and modified times of the file specified

2025-01-10 15:47:30
io.StringIO.getvalue()
  • References/Python/Python/Operating System

getvalue() Return a str containing the entire contents of the buffer. Newlines are decoded as if by read()

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

window.clearok(yes) If yes is 1, the next call to refresh() will clear the window completely.

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

class ctypes.c_void_p Represents the C void * type. The value is represented as integer. The constructor accepts

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

Panel.move(y, x) Move the panel to the screen coordinates (y, x).

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

os.WIFEXITED(status) Return True if the process exited using the exit(2) system call,

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

os.readv(fd, buffers) Read from a file descriptor fd into a number of mutable bytes-like

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

os.fchmod(fd, mode) Change the mode of the file given by fd to the numeric mode. See the docs for chmod()

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

os.times() Returns the current global process times. The return value is an object with five attributes:

2025-01-10 15:47:30