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
/
Python
/
compile.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-106320: Remove private _PyInterpreterState functions (#106325)
Victor Stinner
2023-07-02
1
-0/+1
*
GH-106008: Make implicit boolean conversions explicit (GH-106003)
Brandt Bucher
2023-06-29
1
-5/+16
*
gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)
hms
2023-06-29
1
-0/+2
*
gh-106149: move jump target resolution from optimizer to assembler (#106150)
Irit Katriel
2023-06-27
1
-12/+5
*
GH-91095: Specialize calls to normal Python classes. (GH-99331)
Mark Shannon
2023-06-22
1
-0/+3
*
gh-105908: fix `barry_as_FLUFL` future import (#105909)
Crowthebird
2023-06-19
1
-6/+10
*
gh-105481: remove HAS_ARG, HAS_CONST, IS_JUMP_OPCODE, IS_PSEUDO_OPCODE and re...
Irit Katriel
2023-06-17
1
-12/+5
*
gh-105481: add HAS_JUMP flag to opcode metadata (#105791)
Irit Katriel
2023-06-14
1
-1/+4
*
GH-77273: Better bytecodes for f-strings (GH-6132)
Mark Shannon
2023-06-14
1
-14/+14
*
gh-105481: add flags to each instr in the opcode metadata table, to replace o...
Irit Katriel
2023-06-13
1
-0/+2
*
GH-105678: Split MAKE_FUNCTION into MAKE_FUNCTION and SET_FUNCTION_ATTRIBUTE ...
Mark Shannon
2023-06-13
1
-1/+15
*
gh-105481: add pseudo-instructions to the bytecodes DSL (#105506)
Irit Katriel
2023-06-11
1
-1/+11
*
gh-105375: Improve error handling in compiler_enter_scope() (#105494)
Erlend E. Aasland
2023-06-09
1
-1/+5
*
gh-103906: Remove immortal refcounting in compile/marshal.c (gh-103922)
Dong-hee Na
2023-06-05
1
-3/+3
*
gh-105164: Detect annotations inside match blocks (#105177)
Jelle Zijlstra
2023-06-05
1
-0/+10
*
gh-103277: remove unused macros (#105247)
Irit Katriel
2023-06-03
1
-19/+0
*
gh-105214: Use named constants for MAKE_FUNCTION oparg (#105215)
Jelle Zijlstra
2023-06-02
1
-11/+8
*
remove unused #includes of pycore_pymem.h (#105166)
Irit Katriel
2023-06-01
1
-1/+0
*
gh-105148: make _PyASTOptimizeState internal to ast_opt.c (#105149)
Irit Katriel
2023-05-31
1
-5/+1
*
gh-104656: Rename typeparams AST node to type_params (#104657)
Jelle Zijlstra
2023-05-22
1
-36/+36
*
gh-104686: Fix tracing for decorated classes (#104708)
Jelle Zijlstra
2023-05-21
1
-0/+4
*
gh-104619: never leak comprehension locals to outer locals() (#104637)
Carl Meyer
2023-05-19
1
-21/+19
*
gh-104602: ensure all cellvars are known up front (#104603)
Carl Meyer
2023-05-19
1
-1/+1
*
gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)
Carl Meyer
2023-05-18
1
-2/+2
*
gh-104374: Remove access to class scopes for inlined comprehensions (#104528)
Jelle Zijlstra
2023-05-18
1
-5/+15
*
gh-103865: add monitoring support to LOAD_SUPER_ATTR (#103866)
Carl Meyer
2023-05-16
1
-0/+4
*
gh-103763: Implement PEP 695 (#103764)
Jelle Zijlstra
2023-05-16
1
-103/+520
*
gh-104482: Fix error handling bugs in ast.c (#104483)
Irit Katriel
2023-05-15
1
-0/+1
*
gh-104377: fix cell in comprehension that is free in outer scope (#104394)
Carl Meyer
2023-05-11
1
-3/+12
*
gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)
Carl Meyer
2023-05-09
1
-75/+288
*
gh-104240: return code unit metadata from codegen (#104300)
Irit Katriel
2023-05-09
1
-3/+47
*
gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)
Irit Katriel
2023-05-07
1
-2/+6
*
gh-87092: Expose assembler to unit tests (#103988)
Irit Katriel
2023-05-01
1
-33/+88
*
gh-87092: change assembler to use instruction sequence instead of CFG (#103933)
Irit Katriel
2023-04-29
1
-13/+27
*
gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)
Carl Meyer
2023-04-24
1
-3/+125
*
gh-103492: Clarify SyntaxWarning with literal comparison (#103493)
Shantanu
2023-04-24
1
-4/+12
*
gh-101517: fix line number propagation in code generated for except* (#103550)
Irit Katriel
2023-04-24
1
-12/+20
*
gh-87092: fix a few cases of incorrect error handling in compiler (#103456)
Irit Katriel
2023-04-24
1
-9/+23
*
GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...
Mark Shannon
2023-04-12
1
-2/+1
*
gh-87092: fix refleak in peepholer test harness (#103448)
Irit Katriel
2023-04-11
1
-4/+0
*
gh-87092: move assembler related code from compile.c to assemble.c (#103277)
Irit Katriel
2023-04-11
1
-713/+160
*
gh-87092: move CFG related code from compile.c to flowgraph.c (#103021)
Irit Katriel
2023-03-31
1
-2391/+76
*
GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)
Brandt Bucher
2023-03-23
1
-1/+10
*
gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)
Irit Katriel
2023-03-22
1
-115/+77
*
gh-102860: improve performance of compiler's instr_sequence_to_cfg (#102861)
Irit Katriel
2023-03-21
1
-6/+44
*
gh-87092: refactor assemble() to a number of separate functions, which do not...
Irit Katriel
2023-03-13
1
-244/+290
*
gh-87092: compiler's CFG construction moved to after codegen stage (#102320)
Irit Katriel
2023-03-07
1
-184/+336
*
gh-102371: move _Py_Mangle from compile.c to symtable.c (#102372)
Irit Katriel
2023-03-02
1
-68/+2
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-28
1
-3/+2
*
gh-87092: Make jump target label equal to the offset of the target in the ins...
Irit Katriel
2023-02-28
1
-51/+64
[next]