LICENSE
README.rst
pyproject.toml
__macrotype__/macrotype/__init__.pyi
__macrotype__/macrotype/__main__.pyi
__macrotype__/macrotype/emit.pyi
__macrotype__/macrotype/meta_types.pyi
__macrotype__/macrotype/normalize.pyi
__macrotype__/macrotype/resolve.pyi
__macrotype__/macrotype/scanner.pyi
__macrotype__/macrotype/stubgen.pyi
__macrotype__/macrotype/symbols.pyi
__macrotype__/macrotype/typecheck.pyi
__macrotype__/macrotype/watch.pyi
__macrotype__/macrotype/__init__/__init__.pyi
__macrotype__/macrotype/cli/__init__.pyi
__macrotype__/macrotype/cli/typecheck.pyi
__macrotype__/macrotype/cli/watch.pyi
__macrotype__/macrotype/cli/__init__/__init__.pyi
__macrotype__/macrotype/modules/__init__.pyi
__macrotype__/macrotype/modules/emit.pyi
__macrotype__/macrotype/modules/ir.pyi
__macrotype__/macrotype/modules/scanner.pyi
__macrotype__/macrotype/modules/source.pyi
__macrotype__/macrotype/modules/symbols.pyi
__macrotype__/macrotype/modules/transformers/__init__.pyi
__macrotype__/macrotype/modules/transformers/add_comment.pyi
__macrotype__/macrotype/modules/transformers/alias.pyi
__macrotype__/macrotype/modules/transformers/constant.pyi
__macrotype__/macrotype/modules/transformers/dataclass.pyi
__macrotype__/macrotype/modules/transformers/decorator.pyi
__macrotype__/macrotype/modules/transformers/descriptor.pyi
__macrotype__/macrotype/modules/transformers/duplicate.pyi
__macrotype__/macrotype/modules/transformers/enum.pyi
__macrotype__/macrotype/modules/transformers/flag.pyi
__macrotype__/macrotype/modules/transformers/foreign_symbol.pyi
__macrotype__/macrotype/modules/transformers/generic.pyi
__macrotype__/macrotype/modules/transformers/namedtuple.pyi
__macrotype__/macrotype/modules/transformers/newtype.pyi
__macrotype__/macrotype/modules/transformers/overload.pyi
__macrotype__/macrotype/modules/transformers/param_default.pyi
__macrotype__/macrotype/modules/transformers/protocol.pyi
__macrotype__/macrotype/modules/transformers/recover_custom_generics.pyi
__macrotype__/macrotype/modules/transformers/resolve_imports.pyi
__macrotype__/macrotype/modules/transformers/source_info.pyi
__macrotype__/macrotype/modules/transformers/typeddict.pyi
__macrotype__/macrotype/types/__init__.pyi
__macrotype__/macrotype/types/ir.pyi
__macrotype__/macrotype/types/normalize.pyi
__macrotype__/macrotype/types/parse.pyi
__macrotype__/macrotype/types/resolve.pyi
__macrotype__/macrotype/types/unparse.pyi
__macrotype__/macrotype/types/validate.pyi
demos/__init__.py
demos/sqla_demos.py
demos/sqla_demos.pyi
docs/conf.py
macrotype/__init__.py
macrotype/__main__.py
macrotype/meta_types.py
macrotype/meta_types.pyi
macrotype/stubgen.py
macrotype.egg-info/PKG-INFO
macrotype.egg-info/SOURCES.txt
macrotype.egg-info/dependency_links.txt
macrotype.egg-info/entry_points.txt
macrotype.egg-info/requires.txt
macrotype.egg-info/top_level.txt
macrotype/cli/__init__.py
macrotype/cli/__main__.py
macrotype/cli/typecheck.py
macrotype/cli/watch.py
macrotype/modules/__init__.py
macrotype/modules/emit.py
macrotype/modules/ir.py
macrotype/modules/scanner.py
macrotype/modules/source.py
macrotype/modules/transformers/__init__.py
macrotype/modules/transformers/add_comment.py
macrotype/modules/transformers/alias.py
macrotype/modules/transformers/constant.py
macrotype/modules/transformers/dataclass.py
macrotype/modules/transformers/decorator.py
macrotype/modules/transformers/descriptor.py
macrotype/modules/transformers/duplicate.py
macrotype/modules/transformers/enum.py
macrotype/modules/transformers/flag.py
macrotype/modules/transformers/foreign_symbol.py
macrotype/modules/transformers/generic.py
macrotype/modules/transformers/namedtuple.py
macrotype/modules/transformers/newtype.py
macrotype/modules/transformers/overload.py
macrotype/modules/transformers/param_default.py
macrotype/modules/transformers/protocol.py
macrotype/modules/transformers/recover_custom_generics.py
macrotype/modules/transformers/resolve_imports.py
macrotype/modules/transformers/source_info.py
macrotype/modules/transformers/typeddict.py
macrotype/types/__init__.py
macrotype/types/ir.py
macrotype/types/normalize.py
macrotype/types/parse.py
macrotype/types/resolve.py
macrotype/types/unparse.py
macrotype/types/validate.py
tests/__init__.py
tests/annotations_13.py
tests/annotations_13.pyi
tests/annotations_invalid.py
tests/annotations_invalid_non_type.py
tests/annotations_new.py
tests/annotations_new.pyi
tests/annotations_unsupported.py
tests/annotations_unsupported.pyi
tests/circ_a.py
tests/circ_a.pyi
tests/circ_b.py
tests/circ_b.pyi
tests/circ_expr_a.py
tests/circ_expr_a.pyi
tests/circ_expr_b.py
tests/circ_expr_b.pyi
tests/external_nested.py
tests/strict_error.py
tests/strict_error.pyi
tests/strict_union.py
tests/strict_union.pyi
tests/test_dogfood.py
tests/test_invalid_typing.py
tests/test_load_module_cleanup.py
tests/test_meta_types.py
tests/test_mypy.py
tests/test_mypy_plugin_skip.py
tests/test_origin_args.py
tests/test_process_module.py
tests/test_sqlalchemy_integration.py
tests/test_type_checking.py
tests/test_typechecker_integration.py
tests/test_watch_mode.py
tests/typechecking.py
tests/typechecking.pyi
tests/typechecking_alias.py
tests/typechecking_alias.pyi
tests/typechecking_import_only.py
tests/typechecking_import_only.pyi
tests/modules/__init__.py
tests/modules/namespace_assign.py
tests/modules/proxy_module.py
tests/modules/test_emit.py
tests/modules/test_emit_annotations.py
tests/modules/test_ir.py
tests/modules/test_source_info.py
tests/modules/transformers/__init__.py
tests/modules/transformers/test_transformers.py
tests/types/__init__.py
tests/types/test_ir_helpers.py
tests/types/test_normalize.py
tests/types/test_parse.py
tests/types/test_resolve.py
tests/types/test_roundtrip.py
tests/types/test_unparse.py
tests/types/test_validate.py