Use '...' instead of 'pass' for function bodies

This commit is contained in:
Matthias Kramm
2015-05-20 10:14:02 -07:00
parent c30fb8a6df
commit c12e977403
36 changed files with 599 additions and 599 deletions

View File

@@ -29,14 +29,14 @@ __name__ = Undefined(str)
__package__ = Undefined(None)
class date(object):
def __init__(self, year: int, month: int, day: int): pass
def __init__(self, year: int, month: int, day: int): ...
@classmethod
def fromtimestamp(cls, timestamp: int or float) -> date: pass
def fromtimestamp(cls, timestamp: int or float) -> date: ...
@classmethod
def fromordinal(cls, ordinal: int) -> date: pass
def fromordinal(cls, ordinal: int) -> date: ...
@classmethod
def today(self) -> date: pass
def ctime(self) -> str: pass
def weekday(self) -> int: pass
def today(self) -> date: ...
def ctime(self) -> str: ...
def weekday(self) -> int: ...
```