mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-19 08:14:13 +08:00
Fixing flake8 E265 errors
This commit is contained in:
@@ -94,13 +94,13 @@ EX_NOTFOUND = 0 # Unix only
|
||||
P_NOWAIT = 0
|
||||
P_NOWAITO = 0
|
||||
P_WAIT = 0
|
||||
#P_DETACH = 0 # Windows only
|
||||
#P_OVERLAY = 0 # Windows only
|
||||
# P_DETACH = 0 # Windows only
|
||||
# P_OVERLAY = 0 # Windows only
|
||||
|
||||
# wait()/waitpid() options
|
||||
WNOHANG = 0 # Unix only
|
||||
#WCONTINUED = 0 # some Unix systems
|
||||
#WUNTRACED = 0 # Unix only
|
||||
# WCONTINUED = 0 # some Unix systems
|
||||
# WUNTRACED = 0 # Unix only
|
||||
|
||||
TMP_MAX = 0 # Undocumented, but used by tempfile
|
||||
|
||||
|
||||
@@ -55,11 +55,11 @@ def relpath(path: AnyStr, start: AnyStr = ...) -> AnyStr: ...
|
||||
|
||||
def samefile(path1: AnyStr, path2: AnyStr) -> bool: ...
|
||||
def sameopenfile(fp1: int, fp2: int) -> bool: ...
|
||||
#def samestat(stat1: stat_result,
|
||||
# def samestat(stat1: stat_result,
|
||||
# stat2: stat_result) -> bool: ... # Unix only
|
||||
|
||||
def split(path: AnyStr) -> Tuple[AnyStr, AnyStr]: ...
|
||||
def splitdrive(path: AnyStr) -> Tuple[AnyStr, AnyStr]: ...
|
||||
def splitext(path: AnyStr) -> Tuple[AnyStr, AnyStr]: ...
|
||||
|
||||
#def splitunc(path: str) -> Tuple[str, str]: ... # Windows only, deprecated
|
||||
# def splitunc(path: str) -> Tuple[str, str]: ... # Windows only, deprecated
|
||||
|
||||
Reference in New Issue
Block a user