index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_compile.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-98442: fix locations of with statement's cleanup instructions (#120763)
Irit Katriel
2024-06-20
1
-0/+33
*
gh-120722: Set position on RETURN_VALUE in lambda (#120724)
Jelle Zijlstra
2024-06-19
1
-1/+28
*
gh-120367: fix bug where compiler detects redundant jump after pseudo op repl...
Irit Katriel
2024-06-18
1
-1/+26
*
gh-120417: Add #noqa: F401 to tests (#120627)
Victor Stinner
2024-06-18
1
-2/+2
*
gh-120367: fix removal of redundant NOPs and jumps after reordering hot-cold ...
Irit Katriel
2024-06-17
1
-0/+27
*
gh-120225: fix crash in compiler on empty block at end of exception handler (...
Irit Katriel
2024-06-07
1
-0/+10
*
gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)
Jelle Zijlstra
2024-05-22
1
-1/+1
*
gh-118465: Add __firstlineno__ attribute to class (GH-118475)
Serhiy Storchaka
2024-05-06
1
-1/+4
*
gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)
Irit Katriel
2024-04-17
1
-0/+46
*
gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)
Erlend E. Aasland
2024-04-08
1
-5/+6
*
gh-115775: Compiler adds __static_attributes__ field to classes (#115913)
Irit Katriel
2024-03-26
1
-0/+58
*
gh-116100: Add `test` arg to `ast.If` and `op` arg to `ast.BoolOp` calls (#11...
Kirill Podoprigora
2024-02-29
1
-2/+2
*
Fix test_compile with -O mode (GH-115346)
Serhiy Storchaka
2024-02-19
1
-2/+5
*
gh-115347: avoid emitting redundant NOP for the docstring with -OO (#115494)
Irit Katriel
2024-02-15
1
-0/+26
*
gh-107901: make compiler inline basic blocks with no line number and no fallt...
Irit Katriel
2024-02-02
1
-12/+50
*
gh-114083: apply optimization of LOAD_CONST instructions to the whole CFG bef...
Irit Katriel
2024-01-22
1
-3/+11
*
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
Mark Shannon
2024-01-16
1
-5/+3
*
gh-107901: duplicate blocks with no lineno that have an eval break and multip...
Irit Katriel
2024-01-12
1
-0/+15
*
gh-113932: assert ``SyntaxWarning`` in test_compile.TestSpecifics.test_… (#...
Kirill Podoprigora
2024-01-11
1
-1/+2
*
gh-113603: Compiler no longer tries to maintain the no-empty-block invariant ...
Irit Katriel
2024-01-03
1
-0/+13
*
gh-113054: Compiler no longer replaces a redundant jump with no line number b...
Irit Katriel
2023-12-19
1
-0/+4
*
gh-112962: in dis module, put cache information in the Instruction instead of...
Irit Katriel
2023-12-13
1
-2/+3
*
gh-111123: symtable should visit exception handlers before the else block (#1...
Irit Katriel
2023-10-21
1
-0/+17
*
gh-109889: fix compiler's redundant NOP detection to look past NOPs with no l...
Irit Katriel
2023-09-28
1
-0/+5
*
gh-109823: Adjust labels in compiler when removing an empty basic block which...
Irit Katriel
2023-09-25
1
-0/+5
*
gh-109719: Fix missing jump target labels when compiler reorders cold/warm bl...
Irit Katriel
2023-09-22
1
-0/+11
*
gh-109627: duplicated smalll exit blocks need to be assigned jump target labe...
Irit Katriel
2023-09-20
1
-0/+9
*
gh-109341: Fix crash on compiling invalid AST including TypeAlias (#109349)
Jelle Zijlstra
2023-09-13
1
-0/+20
*
gh-109351: Fix crash when compiling AST with invalid NamedExpr (#109352)
Jelle Zijlstra
2023-09-13
1
-0/+27
*
gh-109195: fix source location for super load before LOAD_SUPER_ATTR (#109289)
Carl Meyer
2023-09-11
1
-0/+7
*
GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)
Victor Stinner
2023-09-08
1
-6/+6
*
gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)
Serhiy Storchaka
2023-09-02
1
-0/+1
*
gh-107901: Fix missing line number on BACKWARD_JUMP at the end of a for loop ...
Irit Katriel
2023-08-21
1
-0/+14
*
gh-105724: Add location information to `assert` errors (GH-105935)
Nikita Sobolev
2023-08-16
1
-5/+5
*
GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...
Mark Shannon
2023-08-04
1
-13/+8
*
gh-104635: Add a test case for variables that have a dependency. (gh-106583)
Dong-hee Na
2023-07-11
1
-0/+9
*
gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)
Carl Meyer
2023-05-18
1
-0/+18
*
gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)
Carl Meyer
2023-05-09
1
-18/+6
*
GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)
Brandt Bucher
2023-03-23
1
-1/+1
*
gh-101951: use textwrap.dedent in compiler tests to make them more readable (...
Irit Katriel
2023-02-16
1
-143/+145
*
gh-101928: fix crash in compiler on multi-line lambda in function call (#101933)
penguin_wwy
2023-02-16
1
-0/+11
*
gh-101632: Add the new RETURN_CONST opcode (#101633)
penguin_wwy
2023-02-07
1
-10/+8
*
gh-100712: make it possible to disable specialization (for debugging) (#100713)
Irit Katriel
2023-01-19
1
-1/+3
*
GH-100982: Add `COMPARE_AND_BRANCH` instruction (GH-100983)
Mark Shannon
2023-01-16
1
-7/+7
*
GH-100117: Make `co_lines` more efficient (GH-100447)
Brandt Bucher
2023-01-10
1
-5/+4
*
gh-99708: fix bug where compiler crashes on if expression with an empty body ...
Irit Katriel
2022-11-24
1
-0/+11
*
gh-98762: Fix locations of match sub-patterns (GH-98775)
Irit Katriel
2022-11-12
1
-1/+95
*
gh-99254: remove all unused consts from code objects (GH-99255)
Irit Katriel
2022-11-11
1
-2/+36
*
gh-94445: add compiler test for another case of excessive stack use (GH-99237)
Carl Meyer
2022-11-08
1
-0/+7
*
gh-98461: Fix location of RETURN_VALUE in async generator bytecode. compiler_...
Irit Katriel
2022-10-25
1
-1/+1
[next]