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

@@ -22,6 +22,6 @@ def heapreplace(*args, **kwargs) -> object:
raise IndexError()
raise TypeError()
def nlargest(a: int, b) -> List[object]: pass
def nlargest(a: int, b) -> List[object]: ...
def nsmallest(a: int, b) -> List[object]: pass
def nsmallest(a: int, b) -> List[object]: ...