Files
TransPyC/Test/SysLibTest/temp/76dd6c275aa72b3b.pyi
2026-07-18 19:25:40 +08:00

42 lines
772 B
Python

"""
Auto-generated Python stub file from os.__init__.py
Module: os.__init__
"""
import t, c
from stdint import *
import platmacro
import memhub
import os.path
import os._win32
import os._posix
_mbuddy: t.CExtern | memhub.MemBuddy | t.CPtr
def exists(path: str) -> bool: pass
def isdir(path: str) -> bool: pass
def isfile(path: str) -> bool: pass
def getsize(path: str) -> t.CInt64T: pass
def getcwd() -> str: pass
def chdir(path: str) -> int: pass
def mkdir(path: str) -> int: pass
def remove(path: str) -> int: pass
def rmdir(path: str) -> int: pass
def rename(old_path: str, new_path: str) -> int: pass
def chmod(path: str, mode: int) -> int: pass
def listdir(path: str, out_names: str, max_count: ULONG) -> ULONG: pass
def system(cmd: str) -> int: pass