mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +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): ...
|
||||
|
||||
@@ -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