├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── README.md ├── future_typing ├── __init__.py ├── cli.py ├── codec.py ├── py.typed └── utils.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_codec.py ├── test_future_typing.py └── test_utils.py /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/README.md -------------------------------------------------------------------------------- /future_typing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/future_typing/__init__.py -------------------------------------------------------------------------------- /future_typing/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/future_typing/cli.py -------------------------------------------------------------------------------- /future_typing/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/future_typing/codec.py -------------------------------------------------------------------------------- /future_typing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /future_typing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/future_typing/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/tests/test_codec.py -------------------------------------------------------------------------------- /tests/test_future_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/tests/test_future_typing.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyWood/future-typing/HEAD/tests/test_utils.py --------------------------------------------------------------------------------