fix syntax errors

This commit is contained in:
Matthias Kramm
2015-09-15 15:47:41 -07:00
parent 6019cad152
commit 6be8de84e9
4 changed files with 9 additions and 9 deletions

View File

@@ -23,7 +23,7 @@ class _localdummy(object):
def start_new(function: Callable[..., Any], args: Any, kwargs: Any = None) -> int: ...
def start_new_thread(function: Callable[..., Any], args: Any, kwargs: Any = None) -> int: ...
def interrupt_main() -> None: ...
def exit() -> None: ...
def exit() -> None:
raise SystemExit()
def exit_thread() -> Any:
raise SystemExit()