Metadata-Version: 1.1
Name: pep567
Version: 0.1.0
Summary: PEP 567 Backport
Home-page: UNKNOWN
Author: MagicStack Inc
Author-email: hello@magic.io
License: Apache License, Version 2.0
Description-Content-Type: UNKNOWN
Description: PEP 567 Backport
        ================
        
        This package implements a backport of Python 3.7 ``contextvars``
        module (see PEP 567) for Python 3.6.
        
        **Important:** at this moment this package does not provide an
        asyncio event loop with PEP 567 support yet.  Stay tuned for updates.
        
        Documentation: https://docs.python.org/3.7/library/contextvars.html
        
        Usage:
        
        .. code-block:: python
        
            try:
                import contextvars
            except ImportError:
                import pep567 as contextvars
        
            my_var = contextvars.ContextVar('my_var')
            # ...
        
        
        License
        =======
        
        Apache 2.0.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Provides: pep567
