Staging
v0.5.1
https://github.com/python/cpython
Revision 471364b4d977fc31bdf3012912954f24e4867d52 authored by Miss Islington (bot) on 24 March 2018, 21:27:06 UTC, committed by GitHub on 24 March 2018, 21:27:06 UTC
(cherry picked from commit a95d98607efe0c43475b354543e49bf8e240bc6f)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 42bd62b
Raw File
Tip revision: 471364b4d977fc31bdf3012912954f24e4867d52 authored by Miss Islington (bot) on 24 March 2018, 21:27:06 UTC
bpo-33132: Fix reference counting issues in the compiler. (GH-6209)
Tip revision: 471364b
contextvars.py
from _contextvars import Context, ContextVar, Token, copy_context


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