aboutsummaryrefslogtreecommitdiff
path: root/Python/context.c
AgeCommit message (Expand)Author
2021-02-19bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner
2021-02-19bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)Victor Stinner
2020-11-04bpo-1635741: _contextvars uses PyModule_AddType() (GH-23147)Victor Stinner
2020-06-24bpo-40521: Fix _PyContext_Fini() (GH-21103)Victor Stinner
2020-06-23bpo-40521: Cleanup code of free lists (GH-21082)Victor Stinner
2020-06-08bpo-40887: Don't use finalized free lists (GH-20700)Victor Stinner
2020-06-05bpo-40521: Make context free list per-interpreter (GH-20644)Victor Stinner
2020-04-29bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner
2020-04-15bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner
2020-04-14bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425)Ethan Smith
2020-04-14bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner
2019-12-08bpo-38979: fix ContextVar "__class_getitem__" method (GH-17497)AMIR
2019-11-08bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052)Victor Stinner
2019-05-29bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer
2019-02-25bpo-36101: remove non-ascii characters in docstring (GH-12018)animalize
2018-11-27bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka
2018-11-27bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka
2018-11-21bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner
2018-11-12bpo-35081: Rename internal headers (GH-10275)Victor Stinner
2018-11-01bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner
2018-11-01bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner
2018-09-21bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)Yury Selivanov
2018-07-30Add docstrings to public methods from context.c (GH-8531)Peter Lamut
2018-06-28bpo-33985: Implement ContextVar.name attribute. (GH-7980)Yury Selivanov
2018-02-09Fix some warnings produced by different compilers. (#5593)Serhiy Storchaka
2018-01-27bpo-32436: Use PyThreadState_GET() in all hot paths (GH-5363)Yury Selivanov
2018-01-26bpo-32436: Make PyContextVar_Get a little bit faster (#5350)Yury Selivanov
2018-01-25bpo-32436: Fix a refleak; var GC tracking; a GCC warning (#5326)Yury Selivanov
2018-01-23bpo-32436: Don't use native popcount() (also fixes bpo-32641) (#5292)Yury Selivanov
2018-01-22bpo-32436: Implement PEP 567 (#5027)Yury Selivanov