summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...Mark Shannon2023-05-172-3/+1564
* gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...Jelle Zijlstra2023-05-171-4/+4
* GH-103906: Remove immortal refcounting in the interpreter (GH-103909)Brandt Bucher2023-05-162-509/+473
* gh-103865: add monitoring support to LOAD_SUPER_ATTR (#103866)Carl Meyer2023-05-166-229/+309
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-1511-626/+2291
* gh-104482: Fix error handling bugs in ast.c (#104483)Irit Katriel2023-05-152-19/+38
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-155-6/+32
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-151-10/+0
* gh-87092: avoid gcc warning on uninitialized struct field in assemble.c (#104...Dong-hee Na2023-05-141-1/+2
* gh-104404: fix crasher with nested comprehensions plus lambdas (#104442)Carl Meyer2023-05-121-7/+14
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-124-403/+434
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-127-145/+178
* gh-104413: Fix refleak when super attribute throws AttributeError (#104414)Jelle Zijlstra2023-05-122-114/+116
* gh-104377: fix cell in comprehension that is free in outer scope (#104394)Carl Meyer2023-05-111-3/+12
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-115-287/+324
* gh-87849: fix SEND specialization family definition (GH-104268)Carl Meyer2023-05-113-176/+177
* gh-104357: fix inlined comprehensions that close over iteration var (#104368)Carl Meyer2023-05-101-6/+13
* GH-102181: Improve specialization stats for SEND (GH-102182)penguin_wwy2023-05-101-41/+45
* gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)Sebastian Berg2023-05-102-74/+1
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-098-584/+915
* gh-104184: fix building --with-pydebug --enable-pystats (#104217)Carl Meyer2023-05-091-1/+1
* gh-104240: return code unit metadata from codegen (#104300)Irit Katriel2023-05-091-3/+47
* gh-99113: A Per-Interpreter GIL! (gh-104210)Eric Snow2023-05-082-45/+14
* gh-103650: Fix perf maps address format (#103651)Arthur Pastel2023-05-071-1/+1
* gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)Irit Katriel2023-05-071-2/+6
* gh-104018: remove unused format "z" handling in string formatfloat() (#104107)John Belmonte2023-05-071-1/+0
* gh-103886: Improve `builtins.__doc__` (#104179)Tomas R2023-05-061-2/+9
* gh-99113: Make Sure the GIL is Acquired at the Right Places (gh-104208)Eric Snow2023-05-063-40/+111
* gh-104233: Fix "unused variable" warning in `ceval_gil.c` (#104234)Nikita Sobolev2023-05-061-0/+2
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-052-6/+29
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-055-0/+5
* 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-021-7/+8
* gh-94673: Hide Objects in PyTypeObject Behind Accessors (gh-104074)Eric Snow2023-05-011-1/+1
* gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...Eric Snow2023-05-014-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