summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-87092: move CFG related code from compile.c to flowgraph.c (#103021)Irit Katriel2023-03-313-2394/+2239
* gh-100227: Make the Global PyModuleDef Cache Safe for Isolated Interpreters (...Eric Snow2023-03-292-52/+251
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-294-213/+215
* gh-100227: Revert gh-102925 "gh-100227: Make the Global Interned Dict Safe fo...Eric Snow2023-03-272-187/+21
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-236-385/+309
* gh-102939: Fix "conversion from Py_ssize_t to long" warning in builtins (GH-1...Nikita Sobolev2023-03-231-2/+2
* gh-100227: Make the Global Interned Dict Safe for Isolated Interpreters (gh-1...Eric Snow2023-03-232-21/+187
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-225-358/+198
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-226-416/+422
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-14/+21
* gh-94673: Isolate the _io module to Each Interpreter (gh-102663)Eric Snow2023-03-211-4/+8
* gh-102860: improve performance of compiler's instr_sequence_to_cfg (#102861)Irit Katriel2023-03-211-6/+44
* gh-98608: Fix Failure-handling in new_interpreter() (gh-102658)Eric Snow2023-03-211-1/+1
* gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)Eric Snow2023-03-213-2/+15
* gh-98608: Stop Treating All Errors from _Py_NewInterpreterFromConfig() as Fat...Eric Snow2023-03-211-9/+10
* gh-102598: Remove obsolete optimization from `FORMAT_VALUE` opcode (#102599)Nikita Sobolev2023-03-212-44/+21
* gh-102304: Fix Non-Debug Builds (gh-102846)Eric Snow2023-03-201-0/+2
* gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)Eric Snow2023-03-203-1/+5
* gh-102755: fix refleak (#102826)Irit Katriel2023-03-191-1/+2
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-194-342/+334
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-181-41/+26
* gh-102778: Add sys.last_exc, deprecate sys.last_type, sys.last_value,sys.last...Irit Katriel2023-03-183-3/+9
* gh-101975: Fixed a potential SegFault on garbage collection (GH-102803)gaogaotiantian2023-03-181-0/+1
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-163-68/+50
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-161-9/+10
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-12/+118
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-161-44/+35
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-5/+35
* gh-102660: Fix Refleaks in import.c (#102744)Eric Snow2023-03-163-28/+28