├── .gitignore ├── COPYING ├── README.rst ├── annotation ├── __init__.py ├── overload.py └── typed.py ├── setup.py └── tests ├── __init__.py ├── test_annontations.py └── test_overload.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/COPYING -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/README.rst -------------------------------------------------------------------------------- /annotation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotation/overload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/annotation/overload.py -------------------------------------------------------------------------------- /annotation/typed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/annotation/typed.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_annontations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/tests/test_annontations.py -------------------------------------------------------------------------------- /tests/test_overload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceronman/typeannotations/HEAD/tests/test_overload.py --------------------------------------------------------------------------------