Fixing flake8 E265 errors

This commit is contained in:
Lukasz Langa
2016-12-20 00:16:44 -08:00
parent 5b6a9937b2
commit 147772950f
24 changed files with 70 additions and 71 deletions

View File

@@ -5,6 +5,6 @@
# import message
# TODO
#class MIMEBase(message.Message):
# class MIMEBase(message.Message):
class MIMEBase:
def __init__(self, _maintype, _subtype, **_params) -> None: ...

View File

@@ -272,8 +272,8 @@ O_LARGEFILE = 0 # Gnu extension if in C library
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

View File

@@ -52,7 +52,7 @@ def relpath(path: AnyStr, start: AnyStr = ...) -> AnyStr: ...
def samefile(path1: unicode, path2: unicode) -> bool: ...
def sameopenfile(fp1: int, fp2: int) -> bool: ...
# TODO
#def samestat(stat1: stat_result,
# def samestat(stat1: stat_result,
# stat2: stat_result) -> bool: ... # Unix only
def split(path: AnyStr) -> Tuple[AnyStr, AnyStr]: ...