summaryrefslogtreecommitdiffstats
path: root/Doc/data
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-102468: Document `PyCFunction_New*` and `PyCMethod_New` (GH-112557)...Miss Islington (bot)2024-01-171-0/+15
* [3.11] gh-113696: Docs: Annotate PyObject_CallOneArg and PyObject_CallNoArgs ...Miss Islington (bot)2024-01-051-0/+7
* bpo-43327: Fix the docs for PyImport_ImportFrozenModuleObject() (GH-24659)Miss Islington (bot)2022-11-271-2/+2
* [3.11] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96500)Gregory P. Smith2022-09-021-3/+6
* [3.11] gh-95185: Check recursion depth in the AST constructor (GH-95186) (GH-...Miss Islington (bot)2022-07-261-441/+446
* [3.11] GH-93516: Backport GH-93769 (GH-94231)Mark Shannon2022-06-281-157/+160
* [3.11] gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383) (#...Ken Jin2022-06-231-524/+527
* [3.11] GH-93516: Backport GH-93769: Speedup line number checks when tracing (...Mark Shannon2022-06-221-290/+308
* [3.11] gh-91162: Support splitting of unpacked arbitrary-length tuple over Ty...Miss Islington (bot)2022-06-141-2166/+2182
* [3.11] gh-91162: Fix substitution of unpacked tuples in generic aliases (GH-9...Miss Islington (bot)2022-06-011-3109/+3138
* [3.11] Add CI step to check changes in the exported ABI (#92442)Pablo Galindo Salgado2022-05-081-0/+16566
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-0/+2
* Add feature macro PY_HAVE_THREAD_NATIVE_ID to the stable ABI definition (GH-3...Petr Viktorin2022-04-081-1/+1
* bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-...Petr Viktorin2022-04-061-881/+885
* bpo-45459: Add Py_buffer to limited API (GH-29991)Christian Heimes2022-02-021-0/+13
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+1
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel2021-10-221-0/+1
* bpo-44220: Export PyStructSequence_UnnamedField in the limited API (GH-26331)Ken Jin2021-10-211-0/+1
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-072-6/+6
* bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)Hai Shi2021-08-172-0/+4
* bpo-41103: Resurrect the old buffer protocol. (GH-27437)Inada Naoki2021-07-292-0/+22
* bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)Hai Shi2021-07-292-0/+4
* bpo-40939: Remove documentation for `PyParser_*` & add porting notes (GH-26855)Petr Viktorin2021-06-241-26/+0
* bpo-44392: Add Py_GenericAlias to C API docs (GH-26724)Ken Jin2021-06-161-1/+1
* bpo-43795: Don't list private names in the limited API (GH-26740)Petr Viktorin2021-06-161-2/+1
* bpo-43795: Remove Py_FrozenMain from the Limited API & Stable ABI (GH-26241)Petr Viktorin2021-05-251-1/+0
* bpo-43795: PEP 652 user documentation (GH-25668)Petr Viktorin2021-05-111-953/+861
* bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki2021-05-071-84/+0
* bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...Pablo Galindo2021-05-031-1/+0
* bpo-43916: Export the _PyStructSequence_InitType to fix build errors in the c...Pablo Galindo2021-05-011-0/+1
* bpo-43795: Generate python3dll.c and doc data from manifest (PEP 652) (GH-25315)Petr Viktorin2021-04-291-2/+169
* bpo-28254: Add a C-API for controlling the GC state (GH-25687)scoder2021-04-281-0/+3
* bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482)Petr Viktorin2021-04-231-6/+1
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-101-0/+4
* bpo-43690: stable_abi.py no longer parses macros (GH-25136)Victor Stinner2021-04-011-1/+0
* bpo-43688: Run make regen-limited-abi (GH-25134)Victor Stinner2021-04-011-0/+2
* bpo-31861: Complete the C-API docs for PyObject_GetAiter and PyAiter_Check (G...Pablo Galindo2021-03-232-0/+8
* bpo-43244: Remove symtable.h header file (GH-24910)Victor Stinner2021-03-191-1/+0
* bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)Antoine Pitrou2021-03-111-0/+2
* Update stable ABI script for MacOS and update list of exported symbols (GH-23...Pablo Galindo2020-12-151-0/+1
* bpo-42545: Check that all symbols in the limited ABI are exported (GH-23616)Pablo Galindo2020-12-041-0/+779
* bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206)Victor Stinner2020-11-091-0/+6
* Delete PyGen_Send (#22663)Vladimir Matveev2020-10-121-5/+0
* bpo-41756: Add PyIter_Send function (#22443)Vladimir Matveev2020-10-101-0/+5
* bpo-41756: Introduce PyGen_Send C API (GH-22196)Vladimir Matveev2020-09-191-0/+5
* bpo-41726: Update the refcounts info of PyType_FromModuleAndSpec in refcounts...Hai Shi2020-09-091-0/+5
* bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209)Inada Naoki2020-06-301-3/+0
* bpo-41123: Remove PyLong_FromUnicode() (GH-21204)Inada Naoki2020-06-291-5/+0
* bpo-41103: Remove old buffer protocol support (#21117)Inada Naoki2020-06-251-18/+0
* bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)Zackery Spytz2020-03-171-1/+2