Context Variables Objects

3.7 版添加。

Changed in version 3.7.1:

注意

In Python 3.7.1 the signatures of all context variables C APIs were changed 要使用 PyObject pointers instead of PyContext , PyContextVar ,和 PyContextToken ,如:

// in 3.7.0:
PyContext *PyContext_New(void);
// in 3.7.1+:
PyObject *PyContext_New(void);
										

bpo-34762 了解更多细节。