summaryrefslogtreecommitdiffstats
path: root/Include/cpython
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-106931: Intern Statically Allocated Strings Globally (gh-107272) (g...Eric Snow2023-11-271-1/+3
* [3.12] GH-108390: Prevent non-local events being set with `sys.monitoring.set...Mark Shannon2023-09-051-6/+13
* [3.12] gh-91051: fix segfault when using all 8 type watchers (GH-107853) (#10...Miss Islington (bot)2023-08-161-1/+1
* [3.12] GH-107263: Increase C stack limit for most functions, except `_PyEval_...Miss Islington (bot)2023-08-041-1/+2
* [3.12] GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291) (GH-10...Mark Shannon2023-07-281-2/+2
* [3.12] gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-...Miss Islington (bot)2023-07-271-0/+11
* [3.12] gh-98608: Move PyInterpreterConfig to pylifecycle.h (GH-107191) (#107198)Miss Islington (bot)2023-07-242-39/+39
* [3.12] GH-96803: Move PyUnstable_InterpreterFrame_GetCode() to Python.h (GH-1...Miss Islington (bot)2023-07-242-17/+17
* [3.12] GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#1070...Victor Stinner2023-07-221-3/+3
* [3.12] gh-86493: Fix possible leaks in some modules initialization (GH-106768...Serhiy Storchaka2023-07-181-0/+1
* [3.12] gh-105227: Add PyType_GetDict() (GH-105747) (#106600)Miss Islington (bot)2023-07-101-0/+1
* [3.12] gh-104812: Run Pending Calls in any Thread (gh-104813) (gh-105752)Eric Snow2023-06-141-0/+2
* [3.12] gh-105603: Change the PyInterpreterConfig.own gil Field (gh-105620) (g...Miss Islington (bot)2023-06-131-3/+7
* [3.12] gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implem...Irit Katriel2023-05-301-0/+4
* [3.12] GH-101291: Avoid using macros with casts in low-level long API. (GH-10...Miss Islington (bot)2023-05-231-2/+3
* GH-101291: Add low level, unstable API for pylong (GH-101685)Mark Shannon2023-05-212-0/+31
* GH-96803: Document and test new unstable internal frame API functions (GH-104...Mark Shannon2023-05-181-1/+1
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-0/+1
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-151-0/+1
* GH-102181: Improve specialization stats for SEND (GH-102182)penguin_wwy2023-05-101-0/+2
* gh-104223: Fix issues with inheriting from buffer classes (#104227)Jelle Zijlstra2023-05-081-0/+1
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-051-0/+3
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-051-0/+17
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-041-0/+1
* gh-104109: Expose Py_NewInterpreterFromConfig() in the Public C-API (gh-104110)Eric Snow2023-05-032-3/+3
* gh-103743: Add PyUnstable_Object_GC_NewWithExtraData (GH-103744)Jurica Bradarić2023-05-021-0/+3
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-242-0/+8
* gh-103091: Add PyUnstable_Type_AssignVersionTag (#103095)Brett Simmers2023-04-241-0/+7
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-4/+13
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-122-12/+44
* gh-101659: Add _Py_AtExit() (gh-103298)Eric Snow2023-04-061-0/+4
* gh-102192: deprecate _PyErr_ChainExceptions (#102935)Irit Katriel2023-04-011-1/+1
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-291-0/+11
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-221-1/+5
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-18/+0
* gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)Eric Snow2023-03-211-0/+1
* gh-98608: Stop Treating All Errors from _Py_NewInterpreterFromConfig() as Fat...Eric Snow2023-03-212-2/+4
* gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)Eric Snow2023-03-201-1/+4
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+4
* gh-100227: Isolate the Import State to Each Interpreter (gh-101941)Eric Snow2023-03-091-2/+2
* gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)Eric Snow2023-03-081-0/+1
* gh-102381: don't call watcher callback with dead object (#102382)Carl Meyer2023-03-083-20/+30
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-282-9/+45
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-3/+2
* gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)Steve Dower2023-02-201-7/+21
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-162-0/+6
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-082-3/+2
* gh-59956: Clarify Runtime State Status Expectations (gh-101308)Eric Snow2023-01-301-1/+26
* GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa...Mark Shannon2023-01-301-2/+7
* gh-77532: Minor tweaks to allow compiling with PlatformToolset=ClangCL on Win...Steve Dower2023-01-271-0/+4