Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 7795ae8f05a5b1134a576a372f64699176cac5fb authored by Miss Islington (bot) on 16 June 2020, 17:36:59 UTC
bpo-40958: Avoid buffer overflow in the parser when indexing the current line (GH-20875) (GH-20919)
Tip revision: 7795ae8
contextvars.py
from _contextvars import Context, ContextVar, Token, copy_context


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