Mark typed_ast as completed (#9121)

This commit is contained in:
Nikita Sobolev
2022-11-07 21:34:23 +03:00
committed by GitHub
parent 11be6effd3
commit 94dc53ee90
2 changed files with 5 additions and 0 deletions

View File

@@ -1 +1,4 @@
version = "1.5.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -3,6 +3,8 @@ from collections.abc import Iterator
from typing import Any
from typing_extensions import TypeAlias
LATEST_MINOR_VERSION: int
class NodeVisitor:
def visit(self, node: AST) -> Any: ...
def generic_visit(self, node: AST) -> None: ...