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:
Sebastian Rittau
2021-12-22 23:26:02 +01:00
committed by GitHub
parent d6f062314f
commit 2a3ff630e8

View File

@@ -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