mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
Fix return type of ParserBase.error (#6666)
As this is an abstract method, NoReturn is problematic as deriving classes (for example in beautifulsoup4 or fpdf2) have an incompatible return type.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import sys
|
||||
from typing import NoReturn
|
||||
from typing import Any
|
||||
|
||||
class ParserBase:
|
||||
def __init__(self) -> None: ...
|
||||
@@ -12,6 +12,6 @@ class ParserBase:
|
||||
def updatepos(self, i: int, j: int) -> int: ... # undocumented
|
||||
if sys.version_info < (3, 10):
|
||||
# Removed from ParserBase: https://bugs.python.org/issue31844
|
||||
def error(self, message: str) -> NoReturn: ... # undocumented
|
||||
def error(self, message: str) -> Any: ... # undocumented
|
||||
lineno: int # undocumented
|
||||
offset: int # undocumented
|
||||
|
||||
Reference in New Issue
Block a user