summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
Commit message (Expand)AuthorAgeFilesLines
* bpo-44687: Ensure BufferedReader objects with unread buffers can peek even wh...Miss Islington (bot)2021-10-011-0/+1
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH...Miss Islington (bot)2021-09-291-0/+1
* [3.10] bpo-45307: Restore private C API function _PyImport_FindExtensionObjec...Serhiy Storchaka2021-09-281-0/+2
* Python 3.10.0rc1v3.10.0rc1Pablo Galindo2021-08-022-6/+0
* bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)Miss Islington (bot)2021-07-291-0/+2
* bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...Miss Islington (bot)2021-07-231-0/+4
* Python 3.10.0b4v3.10.0b4Pablo Galindo2021-07-102-5/+0
* bpo-40939: Remove documentation for `PyParser_*` & add porting notes (GH-2685...Miss Islington (bot)2021-06-281-0/+1
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874) (GH-26877)Victor Stinner2021-06-231-0/+4
* Python 3.10.0b3v3.10.0b3Pablo Galindo2021-06-172-6/+0
* bpo-43795: Don't list private names in the limited API (GH-26740)Miss Islington (bot)2021-06-161-0/+3
* bpo-44378: Fix a compiler warning in Py_IS_TYPE() (GH-26644)Miss Islington (bot)2021-06-111-0/+3
* Python 3.10.0b2v3.10.0b2Pablo Galindo2021-05-312-3/+0
* bpo-43795: Remove Py_FrozenMain from the Limited API & Stable ABI (GH-26241)...Miss Islington (bot)2021-05-251-0/+1
* bpo-43795: Mark PyCodec_Unregister as a function, not data, in stable ABI (GH...Miss Islington (bot)2021-05-051-0/+2
* Python 3.10.0b1v3.10.0b1Pablo Galindo2021-05-039-31/+0
* bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)Victor Stinner2021-04-301-0/+2
* bpo-43795: Generate python3dll.c and doc data from manifest (PEP 652) (GH-25315)Petr Viktorin2021-04-291-0/+2
* bpo-43774: Remove unused PYMALLOC_DEBUG macro (GH-25711)Victor Stinner2021-04-291-0/+5
* bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)Erlend Egeberg Aasland2021-04-281-0/+3
* bpo-28254: Add a C-API for controlling the GC state (GH-25687)scoder2021-04-281-0/+3
* bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)Victor Stinner2021-04-281-0/+5
* bpo-43868: Remove PyOS_ReadlineFunctionPointer from the stable ABI list (GH-2...Petr Viktorin2021-04-231-0/+3
* bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482)Petr Viktorin2021-04-231-0/+2
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-101-0/+6
* Python 3.10.0a7v3.10.0a7Pablo Galindo2021-04-057-68/+0
* bpo-43688: Support the limited C API in debug mode (GH-25131)Victor Stinner2021-04-021-0/+13
* bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner2021-03-241-0/+10
* bpo-43244: Remove parser_interface.h header file (GH-25001)Victor Stinner2021-03-241-2/+7
* bpo-43244: Add pycore_compile.h header file (GH-25000)Victor Stinner2021-03-231-0/+11
* bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner2021-03-231-0/+8
* bpo-43244: Remove symtable.h header file (GH-24910)Victor Stinner2021-03-191-0/+16
* bpo-43244: Remove the PyAST_Validate() function (GH-24911)Victor Stinner2021-03-181-0/+3
* bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)Victor Stinner2021-03-181-0/+2
* Python 3.10.0a6Pablo Galindo2021-03-019-22/+0
* closes bpo-43278: remove unnecessary leading '\n' from COMPILER when build wi...Joseph Shen2021-02-261-0/+1
* bpo-43239: Export PyCFunction_New with PyAPI_FUNC (GH-24551)Petr Viktorin2021-02-231-0/+2
* bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)Nicholas Sim2021-02-191-0/+3
* bpo-43270: Remove private _PyErr_OCCURRED() macro (GH-24579)Victor Stinner2021-02-191-0/+2
* bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550)Nicholas Sim2021-02-171-0/+3
* bpo-40170: Move 3 NEWS entries to the C API section (GH-24555)Erlend Egeberg Aasland2021-02-173-0/+8
* bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553)Erlend Egeberg Aasland2021-02-171-0/+3
* Python 3.10.0a5Pablo Galindo2021-02-022-7/+0
* bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed wchar_t...Serhiy Storchaka2021-01-311-0/+2
* bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)Victor Stinner2021-01-291-0/+5
* Python 3.10.0a4v3.10.0a4Pablo Galindo2021-01-045-11/+0
* bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999)Petr Viktorin2020-12-291-0/+2
* bpo-1635741: Port resource extension module to module state (GH-23462)Christian Heimes2020-12-231-0/+1
* bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730)Victor Stinner2020-12-101-0/+3
* bpo-32381: Remove unused _Py_fopen() function (GH-23711)Victor Stinner2020-12-091-0/+3