summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* [3.10] gh-101400: Fix incorrect lineno in exception message on contin… (gh-...Dong-hee Na2023-01-311-0/+4
* [3.10] GH-95921: Fix positions for some chained comparisons (GH-96968) (GH-96...Brandt Bucher2022-09-201-0/+1
* [3.10] GH-94329: Don't raise on excessive stack consumption (GH-94421) (#94448)Mark Shannon2022-07-111-7/+0
* gh-94332: make it safe to call assemble_free when assemble_init has not been ...Irit Katriel2022-06-301-0/+1
* [3.10] GH-93964: Harden overflow checks before _PyBytes_Resize in compile.c (...Dennis Sweeney2022-06-221-5/+21
* gh-93061: Mark as artificial: backwards jump after async for (GH-93120)Dennis Sweeney2022-05-231-0/+2
* bpo-46831: Update __build_class__ comment (GH-31522)Miss Islington (bot)2022-03-031-3/+2
* [3.10] bpo-46724: Use `JUMP_ABSOLUTE` for all backward jumps. (GH-31326) (GH-...Mark Shannon2022-02-161-0/+31
* bpo-45773: Remove invalid peephole optimizations (GH-31066)Miss Islington (bot)2022-02-031-2/+0
* [3.10] bpo-45773: Stop "optimizing" certain jump patterns (GH-29526)Brandt Bucher2021-11-111-72/+43
* [3.10] Fix typos in the Python directory (GH-28767) (GH-28799)Christian Clauss2021-10-071-2/+2
* [3.10] bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720). (GH-28721)Serhiy Storchaka2021-10-041-1/+1
* [3.10] bpo-45056: Remove trailing unused constants from co_consts (GH-28109) ...Łukasz Langa2021-09-081-0/+33
* bpo-45039: Consistently use ADDOP_LOAD_CONST in compiler rather than ADDOP_O(...Miss Islington (bot)2021-08-311-2/+4
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947) (GH-27957)Dong-hee Na2021-08-261-0/+4
* Remove unused variable. (GH-27677) (#27680)Mark Shannon2021-08-091-3/+0
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-091-16/+24
* [3.10] bpo-44600: Fix line numbers for pattern matching cleanup code (GH-2734...Miss Islington (bot)2021-07-261-4/+12
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-161-16/+48
* bpo-44622: Set line number of END_ASYNC_FOR to match that of iterator. (GH-27...Mark Shannon2021-07-151-1/+3
* [3.10] bpo-44589: raise a SyntaxError when mapping patterns have duplicate li...Miss Islington (bot)2021-07-151-4/+41
* bpo-44616: Mark all clean up instructions at end of named exception block as ...Mark Shannon2021-07-141-3/+2
* bpo-44297: Fix missing line number in generator expressions (GH-26821)Mark Shannon2021-06-211-0/+1
* [3.10] bpo-44298: Backport #26513 to 3.10 (#26516)Mark Shannon2021-06-031-4/+14
* [3.10] bpo-43933: Force RETURN_VALUE bytecodes to have line numbers (GH-26061)Mark Shannon2021-05-131-0/+29
* bpo-44063: set the missing end locations on the compiler (GH-25956) (#25972)Miss Islington (bot)2021-05-071-5/+13
* Correct location for syntax error in try-except (GH-25939)Mark Shannon2021-05-061-1/+1
* bpo-43754: Fix compiler warning in Python/compile.c (GH-25855)Pablo Galindo2021-05-031-1/+1
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-021-229/+364
* bpo-43933: Set frame.f_lineno during call to __exit__ (GH-25719)Mark Shannon2021-04-301-4/+8
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-301-37/+19
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-291-4/+0
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-291-157/+224
* bpo-42737: annotations with complex targets no longer causes any runtime effe...Batuhan Taskaya2021-04-251-0/+6
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-231-3/+10
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-211-9/+22
* bpo-41323: compiler: Reuse tuple in constant tuple folding (GH-25419)Inada Naoki2021-04-161-13/+26
* bpo-43846: Use less stack for large literals and calls (GH-25403)Mark Shannon2021-04-151-50/+144
* bpo-43495 : Push missing frame block in compile.c (GH-24865)tomKPZ2021-04-071-1/+10
* Correct micro release number and add a couple of asserts. (GH-25224)Mark Shannon2021-04-071-3/+3
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-061-1/+46
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-1/+0
* bpo-43244: Add pycore_compile.h header file (GH-25000)Victor Stinner2021-03-231-28/+5
* bpo-43244: Remove symtable.h header file (GH-24910)Victor Stinner2021-03-191-7/+7
* bpo-43244: Add pycore_ast.h header file (GH-24908)Victor Stinner2021-03-171-6/+5
* bpo-43497: Emit SyntaxWarnings for assertions with tuple constants. (GH-24867)tsukasa-au2021-03-161-4/+8
* Mark POP_TOP at end of expression statement as artificial, to conform to PEP ...Mark Shannon2021-03-151-0/+2
* bpo-39316: Make sure that attribute accesses and stores, including method cal...Mark Shannon2021-03-141-1/+17
* Fix typo in compile.c (GH-24812)Ikko Ashimine2021-03-101-1/+1
* bpo-43358: Fix bad free in assemble function (GH-24697)Alex Henrie2021-03-021-2/+2