summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
Commit message (Expand)AuthorAgeFilesLines
* Python 3.9.1rc1v3.9.1rc1Łukasz Langa2020-11-242-5/+0
* bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self i...Miss Skeleton (bot)2020-10-121-0/+3
* bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to limit...Miss Skeleton (bot)2020-10-101-0/+2
* Python 3.9.0rc2v3.9.0rc2Łukasz Langa2020-09-161-2/+0
* bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-21978)Miss Islington (bot)2020-08-301-0/+2
* Python 3.9.0b5v3.9.0b5Łukasz Langa2020-07-201-4/+0
* Revert "bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH...Miss Islington (bot)2020-07-081-0/+4
* Python 3.9.0b4v3.9.0b4Łukasz Langa2020-07-023-8/+0
* bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)Inada Naoki2020-06-181-0/+4
* bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)Miss Islington (bot)2020-06-151-0/+2
* bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...Miss Islington (bot)2020-06-101-0/+2
* Python 3.9.0b2v3.9.0b2Łukasz Langa2020-06-083-6/+0
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723)Victor Stinner2020-06-081-0/+3
* bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683)Miss Islington (bot)2020-06-071-0/+1
* [3.9] bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) (GH-20618)Victor Stinner2020-06-031-0/+2
* Python 3.9.0b1v3.9.0b1Łukasz Langa2020-05-1810-30/+0
* bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)Victor Stinner2020-05-131-0/+1
* bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)scoder2020-05-121-0/+2
* bpo-40545: Export _PyErr_GetTopmostException() function (GH-19978)Victor Stinner2020-05-071-0/+3
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-071-0/+2
* bpo-40412: Nullify inittab_copy during finalization (GH-19746)Gregory Szorc2020-05-011-0/+1
* bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner2020-04-291-0/+1
* bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)Victor Stinner2020-04-291-0/+2
* bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)Victor Stinner2020-04-291-0/+11
* bpo-40421: Add PyFrame_GetCode() function (GH-19757)Victor Stinner2020-04-281-0/+2
* Merge tag 'v3.9.0a6'Łukasz Langa2020-04-289-26/+0
|\
| * Python 3.9.0a6v3.9.0a6Łukasz Langa2020-04-279-26/+0
* | bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733)Pablo Galindo2020-04-271-0/+5
|/
* bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)Hai Shi2020-04-141-0/+2
* bpo-40241: Add pycore_gc.h header file (GH-19494)Victor Stinner2020-04-131-0/+1
* bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the publi...Pablo Galindo2020-04-111-0/+4
* bpo-40170: Remove PyIndex_Check() macro (GH-19428)Victor Stinner2020-04-081-0/+3
* bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)Victor Stinner2020-04-071-0/+4
* bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)Victor Stinner2020-04-071-0/+3
* bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)Victor Stinner2020-04-071-0/+4
* bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)Victor Stinner2020-04-061-0/+3
* bpo-39947: Add PyThreadState_GetID() function (GH-19163)Victor Stinner2020-03-251-0/+2
* Python 3.9.0a5v3.9.0a5Łukasz Langa2020-03-2317-48/+0
* bpo-40024: Add PyModule_AddType() helper function (GH-19088)Dong-hee Na2020-03-221-0/+1
* bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)Victor Stinner2020-03-201-0/+3
* bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)Victor Stinner2020-03-201-0/+2
* bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)Victor Stinner2020-03-171-0/+10
* bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977)Victor Stinner2020-03-161-0/+2
* bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)Dong-hee Na2020-03-161-0/+1
* Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)Inada Naoki2020-03-141-2/+0
* bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)Inada Naoki2020-03-141-0/+2
* bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981)Victor Stinner2020-03-131-0/+2
* bpo-39947: Add PyInterpreterState_Get() function (GH-18979)Victor Stinner2020-03-131-0/+1
* bpo-39947: Hide implementation detail of trashcan macros (GH-18971)Victor Stinner2020-03-131-0/+3
* bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)Victor Stinner2020-03-131-0/+4