# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ This module provides access to operating system functionality that is standardized by the C Standard and the POSIX standard (a thinly disguised Unix interface). Refer to the library manual and corresponding Unix manual entries for more information on calls. """ F_OK = 0 O_APPEND = 8 O_BINARY = 32768 O_CREAT = 256 O_EXCL = 1024 O_NOINHERIT = 128 O_RANDOM = 16 O_RDONLY = 0 O_RDWR = 2 O_SEQUENTIAL = 32 O_SHORT_LIVED = 4096 O_TEMPORARY = 64 O_TEXT = 16384 O_TRUNC = 512 O_WRONLY = 1 P_DETACH = 4 P_NOWAIT = 1 P_NOWAITO = 3 P_OVERLAY = 2 P_WAIT = 0 R_OK = 4 TMP_MAX = 2147483647 W_OK = 2 X_OK = 1 __doc__ = """This module provides access to operating system functionality that is standardized by the C Standard and the POSIX standard (a thinly disguised Unix interface). Refer to the library manual and corresponding Unix manual entries for more information on calls.""" __name__ = 'nt' __package__ = None def _exit(status): """ _exit(status) Exit to the system with specified status, without normal exit processing. """ pass def _getfullpathname(): pass def _isdir(): """ Return true if the pathname refers to an existing directory. """ pass def abort(): """ abort() -> does not return! Abort the interpreter immediately. This 'dumps core' or otherwise fails in the hardest way possible on the hosting operating system. """ return None def access(path, mode): """ access(path, mode) -> True if granted, False otherwise Use the real uid/gid to test for access to a path. Note that most operations will use the effective uid/gid, therefore this routine can be used in a suid/sgid environment to test if the invoking user has the specified access to the path. The mode argument can be F_OK to test existence, or the inclusive-OR of R_OK, W_OK, and X_OK. """ return None def chdir(path): """ chdir(path) Change the current working directory to the specified path. """ pass def chmod(path, mode): """ chmod(path, mode) Change the access permissions of a file. """ pass def close(fd): """ close(fd) Close a file descriptor (for low level IO). """ pass def closerange(fd_low, fd_high): """ closerange(fd_low, fd_high) Closes all file descriptors in [fd_low, fd_high), ignoring errors. """ pass def dup(fd): """ dup(fd) -> fd2 Return a duplicate of a file descriptor. """ return None def dup2(old_fd, new_fd): """ dup2(old_fd, new_fd) Duplicate file descriptor. """ pass environ = {} class error(EnvironmentError): """ OS system call failed. """ def __init__(self, *args): """ x.__init__(...) initializes x; see help(type(x)) for signature """ pass def execv(path, args): """ execv(path, args) Execute an executable path with arguments, replacing current process. path: path of executable file args: tuple or list of strings """ pass def execve(path, args, env): """ execve(path, args, env) Execute a path with arguments and environment, replacing current process. path: path of executable file args: tuple or list of arguments env: dictionary of strings mapping to strings """ pass def fdopen(fd, mode='r', bufsize=None): """ fdopen(fd [, mode='r' [, bufsize]]) -> file_object Return an open file object connected to a file descriptor. """ return file(__file__) def fstat(fd): """ fstat(fd) -> stat result Like stat(), but for an open file descriptor. """ return None def fsync(fildes): """ fsync(fildes) force write of file with filedescriptor to disk. """ pass def getcwd(): """ getcwd() -> path Return a string representing the current working directory. """ return None def getcwdu(): """ getcwdu() -> path Return a unicode string representing the current working directory. """ return None def getpid(): """ getpid() -> pid Return the current process id """ return None def isatty(fd): """ isatty(fd) -> bool Return True if the file descriptor 'fd' is an open file descriptor connected to the slave end of a terminal. """ return None def kill(pid, sig): """ kill(pid, sig) Kill a process with a signal. """ pass def listdir(path): """ listdir(path) -> list_of_strings Return a list containing the names of the entries in the directory. path: path of directory to list The list is in arbitrary order. It does not include the special entries '.' and '..' even if they are present in the directory. """ return [] def lseek(fd, pos, how): """ lseek(fd, pos, how) -> newpos Set the current position of a file descriptor. Return the new cursor position in bytes, starting from the beginning. """ return None def lstat(path): """ lstat(path) -> stat result Like stat(path), but do not follow symbolic links. """ return None def mkdir(): """ mkdir(path [, mode=0777]) Create a directory. """ pass def open(filename, flag, mode=0777): """ open(filename, flag [, mode=0777]) -> fd Open a file (for low level IO). """ return None def pipe(): """ pipe() -> (read_end, write_end) Create a pipe. """ return (None, None) def popen(command, mode='r', bufsize=None): """ popen(command [, mode='r' [, bufsize]]) -> pipe Open a pipe to/from a command returning a file object. """ return None def popen2(): pass def popen3(): pass def popen4(): pass def putenv(key, value): """ putenv(key, value) Change or add an environment variable. """ pass def read(fd, buffersize): """ read(fd, buffersize) -> string Read a file descriptor. """ return "" def remove(path): """ remove(path) Remove a file (same as unlink(path)). """ pass def rename(old, new): """ rename(old, new) Rename a file or directory. """ pass def rmdir(path): """ rmdir(path) Remove a directory. """ pass def spawnv(mode, path, args): """ spawnv(mode, path, args) Execute the program 'path' in a new process. mode: mode of process creation path: path of executable file args: tuple or list of strings """ pass def spawnve(mode, path, args, env): """ spawnve(mode, path, args, env) Execute the program 'path' in a new process. mode: mode of process creation path: path of executable file args: tuple or list of arguments env: dictionary of strings mapping to strings """ pass def startfile(filepath, operation=None): """ startfile(filepath [, operation]) - Start a file with its associated application. When "operation" is not specified or "open", this acts like double-clicking the file in Explorer, or giving the file name as an argument to the DOS "start" command: the file is opened with whatever application (if any) its extension is associated. When another "operation" is given, it specifies what should be done with the file. A typical operation is "print". startfile returns as soon as the associated application is launched. There is no option to wait for the application to close, and no way to retrieve the application's exit status. The filepath is relative to the current directory. If you want to use an absolute path, make sure the first character is not a slash ("/"); the underlying Win32 ShellExecute function doesn't work if it is. """ pass def stat(path): """ stat(path) -> stat result Perform a stat system call on the given path. """ return None def stat_float_times(newval=None): """ stat_float_times([newval]) -> oldval Determine whether os.[lf]stat represents time stamps as float objects. If newval is True, future calls to stat() return floats, if it is False, future calls return ints. If newval is omitted, return the current setting. """ return None class stat_result(object): """ stat_result: Result from stat or lstat. This object may be accessed either as a tuple of (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime) or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on. Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev, or st_flags, they are available as attributes only. See os.stat for more information. """ n_fields = 13 n_sequence_fields = 10 n_unnamed_fields = 3 st_atime = None st_ctime = None st_dev = None st_gid = None st_ino = None st_mode = None st_mtime = None st_nlink = None st_size = None st_uid = None class statvfs_result(object): """ statvfs_result: Result from statvfs or fstatvfs. This object may be accessed either as a tuple of (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax), or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on. See os.statvfs for more information. """ f_bavail = None f_bfree = None f_blocks = None f_bsize = None f_favail = None f_ffree = None f_files = None f_flag = None f_frsize = None f_namemax = None n_fields = 10 n_sequence_fields = 10 n_unnamed_fields = 0 def strerror(code): """ strerror(code) -> string Translate an error code to a message string. """ return "" def system(command): """ system(command) -> exit_status Execute the command (a string) in a subshell. """ return None def tempnam(dir=None, prefix=None): """ tempnam([dir[, prefix]]) -> string Return a unique name for a temporary file. The directory and a prefix may be specified as strings; they may be omitted or None if not needed. """ return "" def times(): """ times() -> (utime, stime, cutime, cstime, elapsed_time) Return a tuple of floating point numbers indicating process times. """ return (None, None, None, None, None) def tmpfile(): """ tmpfile() -> file object Create a temporary file with no directory entries. """ return file(__file__) def tmpnam(): """ tmpnam() -> string Return a unique name for a temporary file. """ return "" def umask(new_mask): """ umask(new_mask) -> old_mask Set the current numeric umask and return the previous umask. """ return None def unlink(path): """ unlink(path) Remove a file (same as remove(path)). """ pass def urandom(n): """ urandom(n) -> str Return n random bytes suitable for cryptographic use. """ return "" def utime(path, arg0, arg1): """ utime(path, (atime, mtime)) utime(path, None) Set the access and modified time of the file to the given values. If the second form is used, set the access and modified times to the current time. """ pass def waitpid(pid, options): """ waitpid(pid, options) -> (pid, status << 8) Wait for completion of a given process. options is ignored on Windows. """ return (None, None) def write(fd, string): """ write(fd, string) -> byteswritten Write a string to a file descriptor. """ return None