aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/compile.c
Commit message (Expand)AuthorAge
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-08
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-08
* Fix compiler errors for unused variables (GH-26601)Pablo Galindo2021-06-08
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-07
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-07
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-04
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-03
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-03
* bpo-44298: Fix line numbers for early exits in with statements. (GH-26513)Mark Shannon2021-06-03
* bpo-43693: Add _PyCode_New(). (gh-26375)Eric Snow2021-05-27
* bpo-44156: Make cached string constants in compile.c subinterpreter compatibl...Ken Jin2021-05-25
* bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...Ken Jin2021-05-15
* bpo-43933: Force RETURN_VALUE bytecodes to have line numbers (GH-26054)Mark Shannon2021-05-12
* bpo-44063: set the missing end locations on the compiler (GH-25956)Batuhan Taskaya2021-05-07
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-07
* bpo-43754: Fix compiler warning in Python/compile.c (GH-25855)Pablo Galindo2021-05-03
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-02
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-30
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-29
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-29
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-28
* bpo-42737: annotations with complex targets no longer causes any runtime effe...Batuhan Taskaya2021-04-25
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-23
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-21
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-16
* bpo-43846: Use less stack for large literals and calls (GH-25403)Mark Shannon2021-04-15
* bpo-43495 : Push missing frame block in compile.c (GH-24865)tomKPZ2021-04-07
* Correct micro release number and add a couple of asserts. (GH-25224)Mark Shannon2021-04-07
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-06
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-01
* bpo-43244: Add pycore_compile.h header file (GH-25000)Victor Stinner2021-03-24
* bpo-43244: Remove symtable.h header file (GH-24910)Victor Stinner2021-03-19
* bpo-43244: Add pycore_ast.h header file (GH-24908)Victor Stinner2021-03-17
* bpo-43497: Emit SyntaxWarnings for assertions with tuple constants. (GH-24867)tsukasa-au2021-03-16
* Mark POP_TOP at end of expression statement as artificial, to conform to PEP ...Mark Shannon2021-03-15
* bpo-39316: Make sure that attribute accesses and stores, including method cal...Mark Shannon2021-03-14
* Fix typo in compile.c (GH-24812)Ikko Ashimine2021-03-10
* bpo-43358: Fix bad free in assemble function (GH-24697)Alex Henrie2021-03-02
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-26
* bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)Inada Naoki2021-02-10
* Only eliminate jumps to successor block if jump is unconditional. (GH-24417)Mark Shannon2021-02-02
* bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24...Pablo Galindo2021-01-30
* bpo-38631: Replace compiler fatal errors with exceptions (GH-24369)Victor Stinner2021-01-30
* Fix a reference leak in the compiler for compiler_lambda() (GH-24382)Pablo Galindo2021-01-29
* bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)Victor Stinner2021-01-29
* bpo-33387: update documentation for exception handling opcode changes (GH-24334)Irit Katriel2021-01-26
* Mark instructions at end of class scope as artificial. (GH-24222)Mark Shannon2021-01-15
* Eliminate NOPs in extended blocks. (GH-24209)Mark Shannon2021-01-13
* bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)Mark Shannon2021-01-13
* bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon2021-01-05