mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Make SyntaxError.offset be optional (#2557)
This commit is contained in:
committed by
Guido van Rossum
parent
3d8a8ec45d
commit
ffeede30d2
@@ -1024,7 +1024,7 @@ if sys.version_info >= (3, 5):
|
||||
class SyntaxError(Exception):
|
||||
msg = ... # type: str
|
||||
lineno = ... # type: int
|
||||
offset = ... # type: int
|
||||
offset = ... # type: Optional[int]
|
||||
text = ... # type: str
|
||||
filename = ... # type: str
|
||||
class IndentationError(SyntaxError): ...
|
||||
|
||||
Reference in New Issue
Block a user