Remove raise statements from function bodies (#3355)

While it may eventually be useful to mark the exceptions that can be
raised from a function or method, the semantics are currently undefined
and unclear.
This commit is contained in:
Sebastian Rittau
2019-10-13 21:51:43 +02:00
committed by GitHub
parent 2bd1b75641
commit de26a3d109
17 changed files with 77 additions and 199 deletions

View File

@@ -135,8 +135,7 @@ def excepthook(type_: Type[BaseException], value: BaseException,
traceback: TracebackType) -> None: ...
def exc_info() -> _OptExcInfo: ...
# sys.exit() accepts an optional argument of anything printable
def exit(arg: object = ...) -> NoReturn:
raise SystemExit()
def exit(arg: object = ...) -> NoReturn: ...
def getcheckinterval() -> int: ... # deprecated
def getdefaultencoding() -> str: ...
if sys.platform != 'win32':