summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-99113: Share the GIL via PyInterpreterState.ceval.gil (gh-104203)Eric Snow2023-05-052-39/+60
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-053-3/+20
* gh-103323: Remove PyRuntimeState_GetThreadState() (#104171)Victor Stinner2023-05-044-9/+7
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-041-0/+12
* gh-103845: Remove line & instruction instrumentations before adding them back...Tian Gao2023-05-031-8/+33
* GH-84976: Move Lib/datetime.py to Lib/_pydatetimePaul Ganssle2023-05-031-0/+1
* gh-104109: Expose Py_NewInterpreterFromConfig() in the Public C-API (gh-104110)Eric Snow2023-05-031-7/+8
* gh-94673: Hide Objects in PyTypeObject Behind Accessors (gh-104074)Eric Snow2023-05-021-1/+1
* gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...Eric Snow2023-05-024-28/+26
* gh-87092: Expose assembler to unit tests (#103988)Irit Katriel2023-05-012-33/+102
* gh-84436: Immortalize in _PyStructSequence_InitBuiltinWithFlags() (gh-104054)Eric Snow2023-05-013-9/+9
* gh-103895: Improve how invalid `Exception.__notes__` are displayed (#103897)Carey Metcalfe2023-05-011-1/+4
* gh-98003: Inline call frames for CALL_FUNCTION_EX (GH-98004)Ken Jin2023-04-303-43/+127
* gh-87092: change assembler to use instruction sequence instead of CFG (#103933)Irit Katriel2023-04-293-75/+80
* GH-103082: Code cleanup in instrumentation code (#103474)Mark Shannon2023-04-293-36/+39
* gh-98040: Remove just the `imp` module (#98573)Barry Warsaw2023-04-284-27/+19
* gh-103978: avoid using 'class' as an identifier (#103979)Carl Meyer2023-04-281-3/+3
* gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)Eric Snow2023-04-276-41/+16
* gh-103879: Fix refleak in super specialization (#103882)Jelle Zijlstra2023-04-261-0/+2
* gh-87729: specialize LOAD_SUPER_ATTR_METHOD (#103809)Carl Meyer2023-04-255-291/+390
* gh-100227: Add a Granular Lock for _PyRuntime.imports.extensions.dict (gh-103...Eric Snow2023-04-252-4/+14
* gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)Eric Snow2023-04-243-8/+40
* gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)Carl Meyer2023-04-246-359/+564
* gh-100227: Only Use deepfreeze for the Main Interpreter (gh-103794)Eric Snow2023-04-242-33/+57
* gh-103492: Clarify SyntaxWarning with literal comparison (#103493)Shantanu2023-04-241-4/+12
* gh-101517: fix line number propagation in code generated for except* (#103550)Irit Katriel2023-04-241-12/+20
* gh-87092: fix a few cases of incorrect error handling in compiler (#103456)Irit Katriel2023-04-241-9/+23
* gh-103323: Get the "Current" Thread State from a Thread-Local Variable (gh-10...Eric Snow2023-04-241-6/+32
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-226-11/+53
* gh-103082: Fix shifted field initialization in `instrumentation.c` (GH-103561)Oleg Iarygin2023-04-211-4/+4
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-191-2/+2
* GH-100530: Change the error message for non-class class patterns (GH-103576)Nikita Sobolev2023-04-181-1/+1
* Fix unused functions warnings in instrumentation.c (GH-103515)Benjamin Peterson2023-04-131-0/+4
* GH-103488: Use return-offset, not yield-offset. (GH-103502)Mark Shannon2023-04-133-412/+429
* GH-103082: Turn on branch events for FOR_ITER instructions. (#103507)Mark Shannon2023-04-131-0/+2
* gh-103326: Remove `Python/importlib.h` (GH-103331)Nikita Sobolev2023-04-121-1783/+0
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-1214-1274/+4370
* gh-87092: fix refleak in peepholer test harness (#103448)Irit Katriel2023-04-111-4/+0
* gh-77757: replace exception wrapping by PEP-678 notes in typeobject's __set_n...Irit Katriel2023-04-112-25/+30
* gh-91276: remove unused _PyOpcode_RelativeJump (#103156)Irit Katriel2023-04-111-23/+11
* gh-87092: move assembler related code from compile.c to assemble.c (#103277)Irit Katriel2023-04-113-737/+786
* gh-103176: sys._current_exceptions() returns mapping to exception instances i...Irit Katriel2023-04-111-7/+6
* gh-100227: Use an Array for _PyRuntime's Set of Locks During Init (gh-103315)Eric Snow2023-04-061-60/+48
* gh-101659: Add _Py_AtExit() (gh-103298)Eric Snow2023-04-061-7/+7
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-054-114/+118
* gh-103167: Fix `-Wstrict-prototypes` warnings by using `(void)` for functions...Nikita Sobolev2023-04-053-4/+4
* gh-102660: Fix is_core_module() (gh-103257)Eric Snow2023-04-041-1/+13
* gh-102192: use PyErr_SetHandledException instead of the legacy PyErr_SetExcIn...Irit Katriel2023-04-012-2/+2
* Add missing variables to `bytecodes.c` (GH-103153)Brett Cannon2023-03-312-224/+270
* gh-100227: Fix Cleanup of the Extensions Cache (gh-103150)Eric Snow2023-03-311-1/+1