36 lines
649 B
Python
36 lines
649 B
Python
"""
|
|
Auto-generated Python stub file from os.path.py
|
|
Module: os.path
|
|
"""
|
|
|
|
|
|
import t, c
|
|
from stdint import *
|
|
import string
|
|
import memhub
|
|
import platmacro
|
|
|
|
_mbuddy: t.CExtern | memhub.MemBuddy | t.CPtr
|
|
|
|
def sep() -> t.CChar: pass
|
|
|
|
def _is_sep(ch: t.CChar) -> bool: pass
|
|
|
|
def _dup_str(s: str) -> str: pass
|
|
|
|
def _substr(s: str, start: t.CSizeT, end: t.CSizeT) -> str: pass
|
|
|
|
def isabs(path: str) -> bool: pass
|
|
|
|
def join(path1: str, path2: str) -> str: pass
|
|
|
|
def basename(path: str) -> str: pass
|
|
|
|
def dirname(path: str) -> str: pass
|
|
|
|
def splitext_name(path: str) -> str: pass
|
|
|
|
def splitext_ext(path: str) -> str: pass
|
|
|
|
def normpath(path: str) -> str: pass
|