mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-25 20:36:44 +08:00
allow file descriptors in os.stat wrapper functions (#6198)
This commit is contained in:
@@ -94,6 +94,6 @@ def splitext(p: PathLike[AnyStr]) -> tuple[AnyStr, AnyStr]: ...
|
||||
@overload
|
||||
def splitext(p: AnyStr) -> tuple[AnyStr, AnyStr]: ...
|
||||
def isabs(s: StrOrBytesPath) -> bool: ...
|
||||
def islink(path: StrOrBytesPath) -> bool: ...
|
||||
def ismount(path: StrOrBytesPath) -> bool: ...
|
||||
def lexists(path: StrOrBytesPath) -> bool: ...
|
||||
def islink(path: StrOrBytesPath | int) -> bool: ...
|
||||
def ismount(path: StrOrBytesPath | int) -> bool: ...
|
||||
def lexists(path: StrOrBytesPath | int) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user