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

@@ -6,11 +6,11 @@
from typing import List, Tuple, Dict, Undefined, GenericType
class zipimporter(object):
def find_module(a: str, *args, **kwargs) -> None: pass
def get_code(a: str) -> object: pass
def find_module(a: str, *args, **kwargs) -> None: ...
def get_code(a: str) -> object: ...
def get_data(a: str) -> str:
raise IOError()
def get_filename(a: str) -> str: pass
def get_source(a: str) -> object: pass
def is_package(a: str) -> bool: pass
def load_module(a: str) -> object: pass
def get_filename(a: str) -> str: ...
def get_source(a: str) -> object: ...
def is_package(a: str) -> bool: ...
def load_module(a: str) -> object: ...