summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-0815-599/+431
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-3/+2
* bpo-46072: Merge dxpairs into py_stats. (GH-31197)Mark Shannon2022-02-072-62/+19
* bpo-46670: Remove unused macros in the Python directory (GH-31192)Victor Stinner2022-02-074-29/+2
* bpo-46670: Remove unused macros in ceval.c (GH-31196)Victor Stinner2022-02-071-7/+2
* bpo-46072: Improve LOAD_METHOD stats (GH-31104)Mark Shannon2022-02-071-3/+17
* bpo-46670: Test if a macro is defined, not its value (GH-31178)Victor Stinner2022-02-071-1/+1
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-042-58/+41
* Add miss stats for specialized instructions. (GH-31108)Mark Shannon2022-02-042-27/+35
* Collect stats for UNPACK_SEQUENCE. (GH-31105)Mark Shannon2022-02-032-1/+22
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-033-25/+7
* bpo-45885: Add more stats for COMPARE_OP in specialize.c (GH-31040)Dennis Sweeney2022-02-031-2/+47
* bpo-45773: Remove invalid peephole optimizations (GH-31066)Brandt Bucher2022-02-031-2/+0
* Add specialization stats for FOR_ITER. (GH-31079)Mark Shannon2022-02-022-0/+73
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-024-1/+10
* bpo-46528: Simplify BUILD_TUPLE/UNPACK_SEQUENCE folding (GH-31039)Brandt Bucher2022-02-011-14/+7
* bpo-45953: Preserve backward compatibility on some PyThreadState field names....Eric Snow2022-02-011-4/+4
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-011-0/+12
* fFx refleak in isinstance error path (GH-31005)Ken Jin2022-01-291-0/+1
* bpo-46072: Add simple stats for Python calls. (GH-30989)Mark Shannon2022-01-282-0/+13
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-285-331/+540
* bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)Victor Stinner2022-01-271-0/+1
* bpo-46458: emit code for else of a try block immediately after the try body (...Irit Katriel2022-01-271-6/+7
* bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)Kumar Aditya2022-01-271-0/+1
* bpo-46528: Simplify the VM's stack manipulations (GH-30902)Brandt Bucher2022-01-263-200/+206
* Use existing unbound_local_error label in DELETE_FAST opcode (GH-30882)Kumar Aditya2022-01-261-6/+1
* bpo-46420: Use NOTRACE_DISPATCH() in specialized opcodes (GH-30652)Dennis Sweeney2022-01-251-26/+43
* bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)Mark Shannon2022-01-243-33/+39
* bpo-46486: Fixed misspelled name DesciptorClassificationKumar Aditya2022-01-231-8/+8
* bpo-46417: Clear symtable identifiers at exit (GH-30809)Victor Stinner2022-01-222-2/+19
* bpo-46417: Clear _io module static objects at exit (GH-30807)Victor Stinner2022-01-221-0/+6
* bpo-46417: Clear Unicode static types at exit (GH-30806)Victor Stinner2022-01-221-0/+1
* bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804)Victor Stinner2022-01-221-6/+4
* bpo-46417: Clear more static types (GH-30796)Victor Stinner2022-01-224-43/+4
* bpo-46417: Use _PyType_CAST() in Python directory (GH-30769)Victor Stinner2022-01-212-4/+3
* bpo-46417: Py_Finalize() clears static types (GH-30743)Victor Stinner2022-01-211-0/+1
* bpo-46417: Call _PyDebug_PrintTotalRefs() later (GH-30744)Victor Stinner2022-01-211-6/+6
* bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)Victor Stinner2022-01-213-2/+4
* bpo-46417: Finalize structseq types at exit (GH-30645)Victor Stinner2022-01-214-0/+43
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-205-151/+139
* bpo-44024: Improve the TypeError message in getattr and hasattr (GH-25863)Géry Ogam2022-01-181-10/+0
* bpo-46161: Fix bug in starunpack_helper in compile.c (GH-30235)zq19972022-01-171-1/+4
* bpo-46405: fix msvc compiler warnings (GH-30627)Kumar Aditya2022-01-171-1/+1
* bpo-45953: Statically initialize all the non-object PyInterpreterState fields...Eric Snow2022-01-142-11/+0
* bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)Eric Snow2022-01-142-11/+5
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-36/+1
* Statically initialize _PyRuntimeState fields. (gh-30588)Eric Snow2022-01-131-10/+0
* bpo-46370: Move the static initializer for _PyRuntime to its own header file....Eric Snow2022-01-132-0/+2
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-132-2/+48
* bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544)Irit Katriel2022-01-131-2/+0