././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1628446913.9462314 types-typed-ast-1.4.4/0000755000175100001710000000000000000000000014134 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1628446913.9462314 types-typed-ast-1.4.4/PKG-INFO0000644000175100001710000000167500000000000015242 0ustar00runnerdockerMetadata-Version: 2.1 Name: types-typed-ast Version: 1.4.4 Summary: Typing stubs for typed-ast Home-page: https://github.com/python/typeshed License: Apache-2.0 license Description: ## Typing stubs for typed-ast This is a PEP 561 type stub package for the `typed-ast` package. It can be used by type-checking tools like mypy, PyCharm, pytype etc. to check code that uses `typed-ast`. The source for this package can be found at https://github.com/python/typeshed/tree/master/stubs/typed-ast. All fixes for types and metadata should be contributed there. See https://github.com/python/typeshed/blob/master/README.md for more details. This package was generated from typeshed commit `8b9d771b67acf13a35905c7d4996382394f23181`. Platform: UNKNOWN Classifier: License :: OSI Approved :: Apache Software License Classifier: Typing :: Typed Description-Content-Type: text/markdown ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1628446913.9462314 types-typed-ast-1.4.4/setup.cfg0000644000175100001710000000004600000000000015755 0ustar00runnerdocker[egg_info] tag_build = tag_date = 0 ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446913.0 types-typed-ast-1.4.4/setup.py0000644000175100001710000000232200000000000015645 0ustar00runnerdockerfrom setuptools import setup name = "types-typed-ast" description = "Typing stubs for typed-ast" long_description = ''' ## Typing stubs for typed-ast This is a PEP 561 type stub package for the `typed-ast` package. It can be used by type-checking tools like mypy, PyCharm, pytype etc. to check code that uses `typed-ast`. The source for this package can be found at https://github.com/python/typeshed/tree/master/stubs/typed-ast. All fixes for types and metadata should be contributed there. See https://github.com/python/typeshed/blob/master/README.md for more details. This package was generated from typeshed commit `8b9d771b67acf13a35905c7d4996382394f23181`. '''.lstrip() setup(name=name, version="1.4.4", description=description, long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/python/typeshed", install_requires=[], packages=['typed_ast-stubs'], package_data={'typed_ast-stubs': ['ast3.pyi', '__init__.pyi', 'ast27.pyi', 'conversions.pyi', 'METADATA.toml']}, license="Apache-2.0 license", classifiers=[ "License :: OSI Approved :: Apache Software License", "Typing :: Typed", ] ) ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1628446913.9462314 types-typed-ast-1.4.4/typed_ast-stubs/0000755000175100001710000000000000000000000017266 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446913.0 types-typed-ast-1.4.4/typed_ast-stubs/METADATA.toml0000644000175100001710000000002000000000000021333 0ustar00runnerdockerversion = "1.4" ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446778.0 types-typed-ast-1.4.4/typed_ast-stubs/__init__.pyi0000644000175100001710000000000000000000000021536 0ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446778.0 types-typed-ast-1.4.4/typed_ast-stubs/ast27.pyi0000644000175100001710000001452300000000000020756 0ustar00runnerdockerimport typing from typing import Any, Iterator class NodeVisitor: def visit(self, node: AST) -> Any: ... def generic_visit(self, node: AST) -> None: ... class NodeTransformer(NodeVisitor): def generic_visit(self, node: AST) -> None: ... def parse(source: str | bytes, filename: str | bytes = ..., mode: str = ...) -> AST: ... def copy_location(new_node: AST, old_node: AST) -> AST: ... def dump(node: AST, annotate_fields: bool = ..., include_attributes: bool = ...) -> str: ... def fix_missing_locations(node: AST) -> AST: ... def get_docstring(node: AST, clean: bool = ...) -> bytes | None: ... def increment_lineno(node: AST, n: int = ...) -> AST: ... def iter_child_nodes(node: AST) -> Iterator[AST]: ... def iter_fields(node: AST) -> Iterator[typing.Tuple[str, Any]]: ... def literal_eval(node_or_string: str | AST) -> Any: ... def walk(node: AST) -> Iterator[AST]: ... PyCF_ONLY_AST: int # ast classes identifier = str class AST: _attributes: typing.Tuple[str, ...] _fields: typing.Tuple[str, ...] def __init__(self, *args: Any, **kwargs: Any) -> None: ... class mod(AST): ... class Module(mod): body: list[stmt] type_ignores: list[TypeIgnore] class Interactive(mod): body: list[stmt] class Expression(mod): body: expr class FunctionType(mod): argtypes: list[expr] returns: expr class Suite(mod): body: list[stmt] class stmt(AST): lineno: int col_offset: int class FunctionDef(stmt): name: identifier args: arguments body: list[stmt] decorator_list: list[expr] type_comment: str | None class ClassDef(stmt): name: identifier bases: list[expr] body: list[stmt] decorator_list: list[expr] class Return(stmt): value: expr | None class Delete(stmt): targets: list[expr] class Assign(stmt): targets: list[expr] value: expr type_comment: str | None class AugAssign(stmt): target: expr op: operator value: expr class Print(stmt): dest: expr | None values: list[expr] nl: bool class For(stmt): target: expr iter: expr body: list[stmt] orelse: list[stmt] type_comment: str | None class While(stmt): test: expr body: list[stmt] orelse: list[stmt] class If(stmt): test: expr body: list[stmt] orelse: list[stmt] class With(stmt): context_expr: expr optional_vars: expr | None body: list[stmt] type_comment: str | None class Raise(stmt): type: expr | None inst: expr | None tback: expr | None class TryExcept(stmt): body: list[stmt] handlers: list[ExceptHandler] orelse: list[stmt] class TryFinally(stmt): body: list[stmt] finalbody: list[stmt] class Assert(stmt): test: expr msg: expr | None class Import(stmt): names: list[alias] class ImportFrom(stmt): module: identifier | None names: list[alias] level: int | None class Exec(stmt): body: expr globals: expr | None locals: expr | None class Global(stmt): names: list[identifier] class Expr(stmt): value: expr class Pass(stmt): ... class Break(stmt): ... class Continue(stmt): ... class slice(AST): ... _slice = slice # this lets us type the variable named 'slice' below class Slice(slice): lower: expr | None upper: expr | None step: expr | None class ExtSlice(slice): dims: list[slice] class Index(slice): value: expr class Ellipsis(slice): ... class expr(AST): lineno: int col_offset: int class BoolOp(expr): op: boolop values: list[expr] class BinOp(expr): left: expr op: operator right: expr class UnaryOp(expr): op: unaryop operand: expr class Lambda(expr): args: arguments body: expr class IfExp(expr): test: expr body: expr orelse: expr class Dict(expr): keys: list[expr] values: list[expr] class Set(expr): elts: list[expr] class ListComp(expr): elt: expr generators: list[comprehension] class SetComp(expr): elt: expr generators: list[comprehension] class DictComp(expr): key: expr value: expr generators: list[comprehension] class GeneratorExp(expr): elt: expr generators: list[comprehension] class Yield(expr): value: expr | None class Compare(expr): left: expr ops: list[cmpop] comparators: list[expr] class Call(expr): func: expr args: list[expr] keywords: list[keyword] starargs: expr | None kwargs: expr | None class Repr(expr): value: expr class Num(expr): n: int | float | complex class Str(expr): s: str | bytes kind: str class Attribute(expr): value: expr attr: identifier ctx: expr_context class Subscript(expr): value: expr slice: _slice ctx: expr_context class Name(expr): id: identifier ctx: expr_context class List(expr): elts: list[expr] ctx: expr_context class Tuple(expr): elts: list[expr] ctx: expr_context class expr_context(AST): ... class AugLoad(expr_context): ... class AugStore(expr_context): ... class Del(expr_context): ... class Load(expr_context): ... class Param(expr_context): ... class Store(expr_context): ... class boolop(AST): ... class And(boolop): ... class Or(boolop): ... class operator(AST): ... class Add(operator): ... class BitAnd(operator): ... class BitOr(operator): ... class BitXor(operator): ... class Div(operator): ... class FloorDiv(operator): ... class LShift(operator): ... class Mod(operator): ... class Mult(operator): ... class Pow(operator): ... class RShift(operator): ... class Sub(operator): ... class unaryop(AST): ... class Invert(unaryop): ... class Not(unaryop): ... class UAdd(unaryop): ... class USub(unaryop): ... class cmpop(AST): ... class Eq(cmpop): ... class Gt(cmpop): ... class GtE(cmpop): ... class In(cmpop): ... class Is(cmpop): ... class IsNot(cmpop): ... class Lt(cmpop): ... class LtE(cmpop): ... class NotEq(cmpop): ... class NotIn(cmpop): ... class comprehension(AST): target: expr iter: expr ifs: list[expr] class ExceptHandler(AST): type: expr | None name: expr | None body: list[stmt] lineno: int col_offset: int class arguments(AST): args: list[expr] vararg: identifier | None kwarg: identifier | None defaults: list[expr] type_comments: list[str | None] class keyword(AST): arg: identifier value: expr class alias(AST): name: identifier asname: identifier | None class TypeIgnore(AST): lineno: int ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446778.0 types-typed-ast-1.4.4/typed_ast-stubs/ast3.pyi0000644000175100001710000001633600000000000020674 0ustar00runnerdockerimport typing from typing import Any, Iterator class NodeVisitor: def visit(self, node: AST) -> Any: ... def generic_visit(self, node: AST) -> None: ... class NodeTransformer(NodeVisitor): def generic_visit(self, node: AST) -> None: ... def parse(source: str | bytes, filename: str | bytes = ..., mode: str = ..., feature_version: int = ...) -> AST: ... def copy_location(new_node: AST, old_node: AST) -> AST: ... def dump(node: AST, annotate_fields: bool = ..., include_attributes: bool = ...) -> str: ... def fix_missing_locations(node: AST) -> AST: ... def get_docstring(node: AST, clean: bool = ...) -> str | None: ... def increment_lineno(node: AST, n: int = ...) -> AST: ... def iter_child_nodes(node: AST) -> Iterator[AST]: ... def iter_fields(node: AST) -> Iterator[typing.Tuple[str, Any]]: ... def literal_eval(node_or_string: str | AST) -> Any: ... def walk(node: AST) -> Iterator[AST]: ... PyCF_ONLY_AST: int # ast classes identifier = str class AST: _attributes: typing.Tuple[str, ...] _fields: typing.Tuple[str, ...] def __init__(self, *args: Any, **kwargs: Any) -> None: ... class mod(AST): ... class Module(mod): body: list[stmt] type_ignores: list[TypeIgnore] class Interactive(mod): body: list[stmt] class Expression(mod): body: expr class FunctionType(mod): argtypes: list[expr] returns: expr class Suite(mod): body: list[stmt] class stmt(AST): lineno: int col_offset: int class FunctionDef(stmt): name: identifier args: arguments body: list[stmt] decorator_list: list[expr] returns: expr | None type_comment: str | None class AsyncFunctionDef(stmt): name: identifier args: arguments body: list[stmt] decorator_list: list[expr] returns: expr | None type_comment: str | None class ClassDef(stmt): name: identifier bases: list[expr] keywords: list[keyword] body: list[stmt] decorator_list: list[expr] class Return(stmt): value: expr | None class Delete(stmt): targets: list[expr] class Assign(stmt): targets: list[expr] value: expr type_comment: str | None class AugAssign(stmt): target: expr op: operator value: expr class AnnAssign(stmt): target: expr annotation: expr value: expr | None simple: int class For(stmt): target: expr iter: expr body: list[stmt] orelse: list[stmt] type_comment: str | None class AsyncFor(stmt): target: expr iter: expr body: list[stmt] orelse: list[stmt] type_comment: str | None class While(stmt): test: expr body: list[stmt] orelse: list[stmt] class If(stmt): test: expr body: list[stmt] orelse: list[stmt] class With(stmt): items: list[withitem] body: list[stmt] type_comment: str | None class AsyncWith(stmt): items: list[withitem] body: list[stmt] type_comment: str | None class Raise(stmt): exc: expr | None cause: expr | None class Try(stmt): body: list[stmt] handlers: list[ExceptHandler] orelse: list[stmt] finalbody: list[stmt] class Assert(stmt): test: expr msg: expr | None class Import(stmt): names: list[alias] class ImportFrom(stmt): module: identifier | None names: list[alias] level: int | None class Global(stmt): names: list[identifier] class Nonlocal(stmt): names: list[identifier] class Expr(stmt): value: expr class Pass(stmt): ... class Break(stmt): ... class Continue(stmt): ... class slice(AST): ... _slice = slice # this lets us type the variable named 'slice' below class Slice(slice): lower: expr | None upper: expr | None step: expr | None class ExtSlice(slice): dims: list[slice] class Index(slice): value: expr class expr(AST): lineno: int col_offset: int class BoolOp(expr): op: boolop values: list[expr] class BinOp(expr): left: expr op: operator right: expr class UnaryOp(expr): op: unaryop operand: expr class Lambda(expr): args: arguments body: expr class IfExp(expr): test: expr body: expr orelse: expr class Dict(expr): keys: list[expr] values: list[expr] class Set(expr): elts: list[expr] class ListComp(expr): elt: expr generators: list[comprehension] class SetComp(expr): elt: expr generators: list[comprehension] class DictComp(expr): key: expr value: expr generators: list[comprehension] class GeneratorExp(expr): elt: expr generators: list[comprehension] class Await(expr): value: expr class Yield(expr): value: expr | None class YieldFrom(expr): value: expr class Compare(expr): left: expr ops: list[cmpop] comparators: list[expr] class Call(expr): func: expr args: list[expr] keywords: list[keyword] class Num(expr): n: float | int | complex class Str(expr): s: str kind: str class FormattedValue(expr): value: expr conversion: int | None format_spec: expr | None class JoinedStr(expr): values: list[expr] class Bytes(expr): s: bytes class NameConstant(expr): value: Any class Ellipsis(expr): ... class Attribute(expr): value: expr attr: identifier ctx: expr_context class Subscript(expr): value: expr slice: _slice ctx: expr_context class Starred(expr): value: expr ctx: expr_context class Name(expr): id: identifier ctx: expr_context class List(expr): elts: list[expr] ctx: expr_context class Tuple(expr): elts: list[expr] ctx: expr_context class expr_context(AST): ... class AugLoad(expr_context): ... class AugStore(expr_context): ... class Del(expr_context): ... class Load(expr_context): ... class Param(expr_context): ... class Store(expr_context): ... class boolop(AST): ... class And(boolop): ... class Or(boolop): ... class operator(AST): ... class Add(operator): ... class BitAnd(operator): ... class BitOr(operator): ... class BitXor(operator): ... class Div(operator): ... class FloorDiv(operator): ... class LShift(operator): ... class Mod(operator): ... class Mult(operator): ... class MatMult(operator): ... class Pow(operator): ... class RShift(operator): ... class Sub(operator): ... class unaryop(AST): ... class Invert(unaryop): ... class Not(unaryop): ... class UAdd(unaryop): ... class USub(unaryop): ... class cmpop(AST): ... class Eq(cmpop): ... class Gt(cmpop): ... class GtE(cmpop): ... class In(cmpop): ... class Is(cmpop): ... class IsNot(cmpop): ... class Lt(cmpop): ... class LtE(cmpop): ... class NotEq(cmpop): ... class NotIn(cmpop): ... class comprehension(AST): target: expr iter: expr ifs: list[expr] is_async: int class ExceptHandler(AST): type: expr | None name: identifier | None body: list[stmt] lineno: int col_offset: int class arguments(AST): args: list[arg] vararg: arg | None kwonlyargs: list[arg] kw_defaults: list[expr] kwarg: arg | None defaults: list[expr] class arg(AST): arg: identifier annotation: expr | None lineno: int col_offset: int type_comment: str | None class keyword(AST): arg: identifier | None value: expr class alias(AST): name: identifier asname: identifier | None class withitem(AST): context_expr: expr optional_vars: expr | None class TypeIgnore(AST): lineno: int ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446778.0 types-typed-ast-1.4.4/typed_ast-stubs/conversions.pyi0000644000175100001710000000010700000000000022357 0ustar00runnerdockerfrom . import ast3, ast27 def py2to3(ast: ast27.AST) -> ast3.AST: ... ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1628446913.9462314 types-typed-ast-1.4.4/types_typed_ast.egg-info/0000755000175100001710000000000000000000000021046 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446913.0 types-typed-ast-1.4.4/types_typed_ast.egg-info/PKG-INFO0000644000175100001710000000167500000000000022154 0ustar00runnerdockerMetadata-Version: 2.1 Name: types-typed-ast Version: 1.4.4 Summary: Typing stubs for typed-ast Home-page: https://github.com/python/typeshed License: Apache-2.0 license Description: ## Typing stubs for typed-ast This is a PEP 561 type stub package for the `typed-ast` package. It can be used by type-checking tools like mypy, PyCharm, pytype etc. to check code that uses `typed-ast`. The source for this package can be found at https://github.com/python/typeshed/tree/master/stubs/typed-ast. All fixes for types and metadata should be contributed there. See https://github.com/python/typeshed/blob/master/README.md for more details. This package was generated from typeshed commit `8b9d771b67acf13a35905c7d4996382394f23181`. Platform: UNKNOWN Classifier: License :: OSI Approved :: Apache Software License Classifier: Typing :: Typed Description-Content-Type: text/markdown ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446913.0 types-typed-ast-1.4.4/types_typed_ast.egg-info/SOURCES.txt0000644000175100001710000000046200000000000022734 0ustar00runnerdockersetup.py typed_ast-stubs/METADATA.toml typed_ast-stubs/__init__.pyi typed_ast-stubs/ast27.pyi typed_ast-stubs/ast3.pyi typed_ast-stubs/conversions.pyi types_typed_ast.egg-info/PKG-INFO types_typed_ast.egg-info/SOURCES.txt types_typed_ast.egg-info/dependency_links.txt types_typed_ast.egg-info/top_level.txt././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446913.0 types-typed-ast-1.4.4/types_typed_ast.egg-info/dependency_links.txt0000644000175100001710000000000100000000000025114 0ustar00runnerdocker ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1628446913.0 types-typed-ast-1.4.4/types_typed_ast.egg-info/top_level.txt0000644000175100001710000000002000000000000023570 0ustar00runnerdockertyped_ast-stubs