Add contextvars from CPython 3.8

This commit is contained in:
Padraic Fanning
2021-08-21 23:34:47 -04:00
parent bd295e0f44
commit 241345490a

4
Lib/contextvars.py vendored Normal file
View File

@@ -0,0 +1,4 @@
from _contextvars import Context, ContextVar, Token, copy_context
__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')