Use typing_extensions.Self in the stdlib (#9694)

This commit is contained in:
Alex Waygood
2023-02-09 09:12:13 +00:00
committed by GitHub
parent 10086c06a1
commit 9ed39d8796
98 changed files with 627 additions and 654 deletions

View File

@@ -1,5 +1,5 @@
from _typeshed import Self, StrPath
from typing_extensions import TypeAlias
from _typeshed import StrPath
from typing_extensions import Self, TypeAlias
_Label: TypeAlias = tuple[int, str | None]
_DFA: TypeAlias = list[list[tuple[int, int]]]
@@ -17,7 +17,7 @@ class Grammar:
start: int
def dump(self, filename: StrPath) -> None: ...
def load(self, filename: StrPath) -> None: ...
def copy(self: Self) -> Self: ...
def copy(self) -> Self: ...
def report(self) -> None: ...
opmap_raw: str

View File

@@ -1,8 +1,7 @@
from _typeshed import Self
from collections.abc import Iterator
from lib2to3.pgen2.grammar import Grammar
from typing import Any
from typing_extensions import TypeAlias
from typing_extensions import Self, TypeAlias
_NL: TypeAlias = Node | Leaf
_Context: TypeAlias = tuple[str, int, int]
@@ -21,8 +20,8 @@ class Base:
was_changed: bool
was_checked: bool
def __eq__(self, other: object) -> bool: ...
def _eq(self: Self, other: Self) -> bool: ...
def clone(self: Self) -> Self: ...
def _eq(self, other: Self) -> bool: ...
def clone(self) -> Self: ...
def post_order(self) -> Iterator[_NL]: ...
def pre_order(self) -> Iterator[_NL]: ...
def replace(self, new: _NL | list[_NL]) -> None: ...