mirror of
https://github.com/python/cpython.git
synced 2026-07-29 13:16:59 -04:00
Co-authored-by: sobolevn <[email protected]> Co-authored-by: Alex Waygood <[email protected]> Co-authored-by: Peter Bierma <[email protected]>
9 lines
198 B
Python
9 lines
198 B
Python
import _collections_abc
|
|
from _contextvars import Context, ContextVar, Token, copy_context
|
|
|
|
|
|
__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')
|
|
|
|
|
|
_collections_abc.Mapping.register(Context)
|