Specify attribute types of SyntaxError

This commit is contained in:
Hong Minhee
2016-02-28 05:45:35 +09:00
parent f9a9fc56ac
commit 9f1ea9c412
2 changed files with 10 additions and 2 deletions

View File

@@ -775,7 +775,11 @@ class WindowsError(OSError): ...
class OverflowError(ArithmeticError): ...
class ReferenceError(Exception): ...
class StopIteration(Exception): ...
class SyntaxError(Exception): ...
class SyntaxError(Exception):
msg = ... # type: str
lineno = ... # type: int
offset = ... # type: int
text = ... # type: str
class IndentationError(SyntaxError): ...
class TabError(IndentationError): ...
class SystemError(Exception): ...