Drop Python 3.8 branches (#13776)

This commit is contained in:
Sebastian Rittau
2025-04-03 10:35:36 +02:00
committed by GitHub
parent 1e43190554
commit 30b16c168d
117 changed files with 1023 additions and 2639 deletions
+1 -5
View File
@@ -53,11 +53,7 @@ class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator):
) -> None: ...
@overload
def setProperty(self, name: str, value: object) -> None: ...
if sys.version_info >= (3, 9):
def feed(self, data: str | ReadableBuffer, isFinal: bool = False) -> None: ...
else:
def feed(self, data: str | ReadableBuffer, isFinal: _BoolType = 0) -> None: ...
def feed(self, data: str | ReadableBuffer, isFinal: bool = False) -> None: ...
def flush(self) -> None: ...
def close(self) -> None: ...
def reset(self) -> None: ...