summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
Commit message (Expand)AuthorAgeFilesLines
* Python 3.8.10v3.8.10Łukasz Langa2021-05-031-5/+0
* bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683) (GH-25686)Victor Stinner2021-04-281-0/+5
* Python 3.8.8rc1v3.8.8rc1Łukasz Langa2021-02-162-4/+0
* bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed wchar_t...Miss Islington (bot)2021-01-311-0/+2
* [3.8] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) (G...Petr Viktorin2021-01-121-0/+2
* Python 3.8.7rc1v3.8.7rc1Łukasz Langa2020-12-071-2/+0
* bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to limit...Miss Skeleton (bot)2020-10-101-0/+2
* Python 3.8.6rc1v3.8.6rc1Łukasz Langa2020-09-071-2/+0
* bpo-41524: fix pointer bug in PyOS_mystr{n}icmp (GH-21845) (GH-22016)Miss Islington (bot)2020-08-301-0/+2
* Python 3.8.3v3.8.3Łukasz Langa2020-05-131-1/+0
* bpo-40412: Nullify inittab_copy during finalization (GH-19746)Miss Islington (bot)2020-05-011-0/+1
* Python 3.8.3rc1v3.8.3rc1Łukasz Langa2020-04-294-8/+0
* bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) (GH-19029)Victor Stinner2020-03-161-0/+2
* bpo-39884: Add method name in "bad call flags" error (GH-18944) (GH-18956)Victor Stinner2020-03-121-0/+2
* [3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase i...Serhiy Storchaka2020-03-121-0/+2
* [3.8] bpo-38913: Fix segfault in Py_BuildValue("(sGH-O)", ...) if entered wit...Serhiy Storchaka2020-03-021-0/+2
* Python 3.8.1rc1v3.8.1rc1Łukasz Langa2019-12-093-7/+0
* closes bpo-37633: Reëxport some function compatibility wrappers for macros i...Miss Islington (bot)2019-11-051-0/+1
* bpo-38540: Fix possible leak in PyArg_Parse for "esGH-" and "etGH-". (GH-16869)Miss Skeleton (bot)2019-10-211-0/+3
* [3.8] bpo-36389: Backport debug enhancements from master (GH-16796)Victor Stinner2019-10-151-0/+3
* v3.8.0v3.8.0Łukasz Langa2019-10-141-3/+0
* [3.8] bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) (GH-16662)Pablo Galindo2019-10-081-0/+3
* v3.8.0rc1v3.8.0rc1Łukasz Langa2019-10-014-9/+0
* bpo-38304: Remove PyConfig.struct_size (GH-16500)Victor Stinner2019-09-301-3/+0
* bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453)Victor Stinner2019-09-281-0/+3
* [3.8] bpo-38234: Backport init path config changes from master (GH-16423)Victor Stinner2019-09-261-0/+3
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336)Victor Stinner2019-09-231-2/+3
* [3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) ...Victor Stinner2019-09-211-0/+2
* bpo-38205: Py_UNREACHABLE() calls Py_FatalError() (GH-16290) (GH-16306)Victor Stinner2019-09-201-0/+1
* [3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap t...Petr Viktorin2019-09-121-0/+2
* Python 3.8.0b4v3.8.0b4Łukasz Langa2019-08-292-3/+0
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)Victor Stinner2019-08-231-0/+2
* bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415) (GH-15420)Victor Stinner2019-08-231-0/+1
* Python 3.8.0b2v3.8.0b2Łukasz Langa2019-07-047-14/+0
* bpo-36763: Add PyConfig_SetWideStringList() (GH-14444)Miss Islington (bot)2019-07-011-0/+1
* bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Miss Islington (bot)2019-07-011-0/+3
* [3.8] bpo-37250: put back tp_print for backwards compatibility (GH-14193)Jeroen Demeyer2019-06-251-0/+4
* bpo-28805: document METH_FASTCALL (GH-14079)Miss Islington (bot)2019-06-161-0/+1
* bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940)Miss Islington (bot)2019-06-101-0/+1
* bpo-37191: Avoid declaration-after-statement in header included from Python.h...Petr Viktorin2019-06-071-0/+3
* [3.8] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH...Zackery Spytz2019-06-071-0/+1
* Python 3.8.0b1v3.8.0b1Łukasz Langa2019-06-047-17/+0
* bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)Zackery Spytz2019-05-311-0/+2
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-291-0/+2
* bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)Jeroen Demeyer2019-05-281-0/+3
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-0/+1
* bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)Michael J. Sullivan2019-05-261-0/+4
* bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390)Victor Stinner2019-05-171-0/+3
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-0/+2
* Python 3.8.0a4v3.8.0a4Łukasz Langa2019-05-066-24/+0