├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── contextvars └── __init__.py ├── pytest.ini ├── setup.py └── tests ├── __init__.py └── test_basics.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/README.rst -------------------------------------------------------------------------------- /contextvars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/contextvars/__init__.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicStack/contextvars/HEAD/tests/test_basics.py --------------------------------------------------------------------------------