Staging
v0.8.1
https://github.com/python/cpython
Revision efc9065904c4df8962e04303c2c03642f45019b5 authored by Christian Heimes on 15 May 2020, 20:37:32 UTC, committed by GitHub on 15 May 2020, 20:37:32 UTC
1 parent 5e6b491
Raw File
Tip revision: efc9065904c4df8962e04303c2c03642f45019b5 authored by Christian Heimes on 15 May 2020, 20:37:32 UTC
[3.7] bpo-40515: Require OPENSSL_THREADS (GH-19953) (GH-20120)
Tip revision: efc9065
contextvars.py
from _contextvars import Context, ContextVar, Token, copy_context


__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')
back to top