change empty bodies from "pass" to "..."

CONTRIBUTING.md says to prefer ... Not the most impactful change but fixing
these will allow us to lint for it in the future and get a consistent style.
This commit is contained in:
Jelle Zijlstra
2017-03-16 07:44:45 -07:00
committed by Łukasz Langa
parent 17be26165d
commit 349ff59f33
16 changed files with 53 additions and 53 deletions

View File

@@ -24,8 +24,8 @@ _T3 = TypeVar('_T3')
_T4 = TypeVar('_T4')
_TT = TypeVar('_TT', bound='type')
class staticmethod: pass # Special, only valid as a decorator.
class classmethod: pass # Special, only valid as a decorator.
class staticmethod: ... # Special, only valid as a decorator.
class classmethod: ... # Special, only valid as a decorator.
class object:
__doc__ = ... # type: Optional[str]

View File

@@ -9,6 +9,6 @@ class StreamWriter(codecs.StreamWriter):
class StreamReader(codecs.StreamReader):
pass
def getregentry() -> codecs.CodecInfo: pass
def encode(input: str, errors: str = ...) -> bytes: pass
def decode(input: bytes, errors: str = ...) -> str: pass
def getregentry() -> codecs.CodecInfo: ...
def encode(input: str, errors: str = ...) -> bytes: ...
def decode(input: bytes, errors: str = ...) -> str: ...

View File

@@ -11,5 +11,5 @@ class struct_spwd(object):
sp_expire = ... # type: int
sp_flag = ... # type: int
def getspall() -> List[struct_spwd]: pass
def getspnam() -> struct_spwd: pass
def getspall() -> List[struct_spwd]: ...
def getspnam() -> struct_spwd: ...

View File

@@ -127,7 +127,7 @@ class FrameType:
f_restricted = ... # type: bool
f_trace = ... # type: Callable[[], None]
def clear(self) -> None: pass
def clear(self) -> None: ...
SliceType = slice
class EllipsisType: ...