mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
* thread_inherit_context * Update contextvar, threading from CPython 3.14.2 * partially patch test_sys to 3.14.2 --------- Co-authored-by: CPython Devleopers <>
9 lines
198 B
Python
Vendored
9 lines
198 B
Python
Vendored
import _collections_abc
|
|
from _contextvars import Context, ContextVar, Token, copy_context
|
|
|
|
|
|
__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')
|
|
|
|
|
|
_collections_abc.Mapping.register(Context)
|