summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-93678: extract 'struct cfg_builder' from the compiler so that the CFG can ...Irit Katriel2022-07-261-120/+113
* gh-95174: Handle missing dup() and constants in WASI (GH-95229)Christian Heimes2022-07-262-1/+11
* gh-94673: Always Finalize Static Builtin Types (#95153)Eric Snow2022-07-251-1/+2
* gh-94673: Add _PyStaticType_InitBuiltin() (#95152)Eric Snow2022-07-253-26/+22
* GH-94851: check refcnt of immortal objects after finalization (GH-95001)Kumar Aditya2022-07-251-0/+3
* gh-95185: Check recursion depth in the AST constructor (#95186)Pablo Galindo Salgado2022-07-241-1/+106
* GH-94036: Fix more attribute location quirks (GH-95028)Brandt Bucher2022-07-221-20/+23
* GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)Brandt Bucher2022-07-223-3/+14
* GH-91409: Don't overwrite valid locations with NOP locations (GH-95067)Brandt Bucher2022-07-201-1/+4
* gh-91102: Port 8-argument _warnings.warn_explicit to Argument Clinic (#92891)Oleg Iarygin2022-07-202-25/+105
* GH-94851: fix immortal objects refcounting in compiler (gh-95040)Kumar Aditya2022-07-201-1/+1
* gh-91256: Ensure help text has the program name even before getpath is called...Steve Dower2022-07-191-0/+3
* gh-93678: move normalize_basic_block and extend_block call into optimize_cfg ...Irit Katriel2022-07-191-31/+26
* GH-94822: Don't specialize when metaclasses are involved (GH-94892)Brandt Bucher2022-07-181-6/+5
* gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931)Serhiy Storchaka2022-07-181-3/+1
* GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...Mark Shannon2022-07-181-14/+0
* gh-91348: Restore frame argument to sys._getframe audit event (GH-94928)Steve Dower2022-07-171-5/+7
* gh-93939: Build C extensions without setup.py (GH-94474)Christian Heimes2022-07-141-1/+0
* gh-93883: elide traceback indicators when possible (#93994)John Belmonte2022-07-111-4/+14
* GH-94694: Fix column offsets for multi-line method lookups (GH-94697)Brandt Bucher2022-07-101-2/+9
* GH-93252: Fix error handling for failed Python calls (GH-94693)Brandt Bucher2022-07-091-1/+5
* gh-94215: Fix error handling for line-tracing events (GH-94681)Brandt Bucher2022-07-081-5/+14
* gh-92228: disable the compiler's 'small exit block inlining' optimization for...Irit Katriel2022-07-071-0/+14
* gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace (GH-94...Pablo Galindo Salgado2022-07-051-2/+24
* gh-94485: Set line number of module's RESUME instruction to 0, as specified b...Irit Katriel2022-07-051-1/+4
* gh-94216: add pseudo instructions to the dis/opcodes modules (GH-94241)Irit Katriel2022-07-012-39/+12
* GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...Mark Shannon2022-07-012-5/+17
* gh-91719: Reload opcode on unknown error so that C can optimize the dispatchi...neonene2022-06-301-0/+3
* GH-94329: Don't raise on excessive stack consumption (GH-94421)Mark Shannon2022-06-301-6/+1
* gh-94332: make it safe to call assemble_free when assemble_init has not been ...Irit Katriel2022-06-301-1/+2
* GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)Mark Shannon2022-06-274-45/+139
* gh-77560: Report possible errors in restoring builtins at finalization (GH-94...Serhiy Storchaka2022-06-251-1/+1
* GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....Mark Shannon2022-06-214-9/+193
* gh-74953: _PyThread_cond_after() uses _PyTime_t (#94056)Victor Stinner2022-06-212-29/+16
* GH-91432: Specialize FOR_ITER (GH-91713)Dennis Sweeney2022-06-213-37/+118
* GH-93678: refactor compiler so that optimizer does not need the assembler and...Irit Katriel2022-06-211-160/+169
* gh-94021: Address unreachable code warning in specialize code (GH-94022)Christian Heimes2022-06-211-1/+2
* gh-93937: PyOS_StdioReadline() uses PyConfig.legacy_windows_stdio (#94024)Victor Stinner2022-06-201-0/+3
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-201-7/+9
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-203-41/+15
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-196-6/+4
* gh-74953: Reformat PyThread_acquire_lock_timed() (#93947)Victor Stinner2022-06-191-46/+62
* gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)Ken Jin2022-06-173-22/+97
* gh-77782: Deprecate global configuration variable (#93943)Victor Stinner2022-06-172-0/+24
* gh-74953: Fix PyThread_acquire_lock_timed() code recomputing the timeout (#93...Victor Stinner2022-06-171-1/+1
* gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942)Victor Stinner2022-06-172-16/+17
* gh-77782: Py_FdIsInteractive() now uses PyConfig.interactive (#93916)Victor Stinner2022-06-174-14/+17
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...neonene2022-06-161-1/+22
* Fix BINARY_SUBSCR_GETITEM stats (GH-93903)Ken Jin2022-06-162-7/+7
* Rename 'LOAD_METHOD' specialization stat consts to 'ATTR'. (GH-93812)Mark Shannon2022-06-141-17/+14