Staging
v0.5.1
https://github.com/python/cpython
Revision 06babb24225d41a76e4aee975380294ca1ee1d7c authored by Gregory P. Smith on 23 February 2019, 18:43:49 UTC, committed by GitHub on 23 February 2019, 18:43:49 UTC
Add What's New docs about the Ctrl-C improvement. Correct the issue number in the NEWS entry.
1 parent be3b295
Raw File
Tip revision: 06babb24225d41a76e4aee975380294ca1ee1d7c authored by Gregory P. Smith on 23 February 2019, 18:43:49 UTC
bpo-1054041: Add What's New docs. (GH-11999)
Tip revision: 06babb2
contextvars.py
from _contextvars import Context, ContextVar, Token, copy_context


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