mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Make SyntaxError.offset be optional (#2557)
This commit is contained in:
committed by
Guido van Rossum
parent
3d8a8ec45d
commit
ffeede30d2
@@ -1030,7 +1030,7 @@ class ReferenceError(StandardError): ...
|
||||
class SyntaxError(StandardError):
|
||||
msg = ... # type: str
|
||||
lineno = ... # type: int
|
||||
offset = ... # type: int
|
||||
offset = ... # type: Optional[int]
|
||||
text = ... # type: str
|
||||
filename = ... # type: str
|
||||
class IndentationError(SyntaxError): ...
|
||||
|
||||
@@ -1030,7 +1030,7 @@ class ReferenceError(StandardError): ...
|
||||
class SyntaxError(StandardError):
|
||||
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