Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) | Victor Stinner | 2020-04-29 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | | Remove the following function from the C API: * PyAsyncGen_ClearFreeLists() * PyContext_ClearFreeList() * PyDict_ClearFreeList() * PyFloat_ClearFreeList() * PyFrame_ClearFreeList() * PyList_ClearFreeList() * PySet_ClearFreeList() * PyTuple_ClearFreeList() Make these functions private, move them to the internal C API and change their return type to void. Call explicitly PyGC_Collect() to free all free lists. Note: PySet_ClearFreeList() did nothing. | ||||
* | bpo-39573: Add Py_IS_TYPE() function (GH-18488) | Dong-hee Na | 2020-02-13 | 1 | -3/+3 |
| | | | Co-Author: Neil Schemenauer <nas-github@arctrix.com> | ||||
* | bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473) | Yury Selivanov | 2018-09-21 | 1 | -11/+9 |
| | |||||
* | Spelling fixes to docs, docstrings, and comments (GH-6374) | Ville Skyttä | 2018-04-20 | 1 | -1/+1 |
| | |||||
* | bpo-32436: Implement PEP 567 (#5027) | Yury Selivanov | 2018-01-23 | 1 | -0/+86 |