GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Python
/
compile.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24...
Pablo Galindo
2021-01-30
1
-3
/
+2
*
bpo-38631: Replace compiler fatal errors with exceptions (GH-24369)
Victor Stinner
2021-01-30
1
-34
/
+52
*
Fix a reference leak in the compiler for compiler_lambda() (GH-24382)
Pablo Galindo
2021-01-29
1
-1
/
+3
*
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
Victor Stinner
2021-01-29
1
-7
/
+11
*
bpo-33387: update documentation for exception handling opcode changes (GH-24334)
Irit Katriel
2021-01-26
1
-2
/
+0
*
Mark instructions at end of class scope as artificial. (GH-24222)
Mark Shannon
2021-01-15
1
-0
/
+2
*
Eliminate NOPs in extended blocks. (GH-24209)
Mark Shannon
2021-01-13
1
-5
/
+13
*
bpo-42908: Mark cleanup code at end of try-except and with artificial (#24202)
Mark Shannon
2021-01-13
1
-31
/
+104
*
bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)
Mark Shannon
2021-01-05
1
-0
/
+6
*
bpo-42810: Mark jumps at end of if and try statements as artificial. (GH-24091)
Mark Shannon
2021-01-04
1
-7
/
+24
*
Delete the now unused c_do_not_emit_bytecode field. (#24094)
Mark Shannon
2021-01-04
1
-33
/
+0
*
bpo-42246: Don't eliminate jumps to jumps, if it will break PEP 626. (GH-23896)
Mark Shannon
2020-12-23
1
-51
/
+84
*
bpo-42634: Mark reraise after except blocks as artificial. (GH-23877)
Mark Shannon
2020-12-21
1
-0
/
+2
*
bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...
Mark Shannon
2020-12-17
1
-4
/
+4
*
bpo-42645: Make sure that return/break/continue are only traced once when exi...
Mark Shannon
2020-12-16
1
-4
/
+13
*
bpo-42615: Delete redundant jump instructions that only bypass empty blocks (...
Om G
2020-12-16
1
-0
/
+42
*
bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...
Mark Shannon
2020-12-15
1
-85
/
+27
*
bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spu...
Mark Shannon
2020-12-14
1
-0
/
+2
*
Don't generate spurious line number in try-except-finally. (#23760)
Mark Shannon
2020-12-14
1
-0
/
+2
*
bpo-42246: Don't forget the entry block when ensuring that all exits have a l...
Mark Shannon
2020-12-04
1
-0
/
+6
*
bpo-42246: Make sure that line number is correct after a return, as required ...
Mark Shannon
2020-12-02
1
-11
/
+126
*
bpo-42202: Store func annotations as a tuple (GH-23316)
Yurii Karabas
2020-11-25
1
-43
/
+27
*
bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)
Mark Shannon
2020-11-17
1
-60
/
+127
*
bpo-42246: Fix memory leak in compiler (GH-23256)
Mark Shannon
2020-11-13
1
-7
/
+13
*
bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)
Mark Shannon
2020-11-12
1
-78
/
+85
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
1
-99
/
+103
*
bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995)
Victor Stinner
2020-10-27
1
-2
/
+4
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
1
-3
/
+3
*
bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)
Batuhan Taskaya
2020-10-06
1
-12
/
+2
*
bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395)
Mark Shannon
2020-09-25
1
-8
/
+11
*
bpo-40941: Fix fold_tuple_on_constants() compiler warnings (GH-22378)
Victor Stinner
2020-09-23
1
-4
/
+2
*
bpo-41746: Add type information to asdl_seq objects (GH-22223)
Pablo Galindo
2020-09-16
1
-40
/
+37
*
bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...
Pablo Galindo
2020-08-13
1
-1
/
+1
*
bpo-41463: Generate information about jumps from 'opcode.py' rather than dupl...
Mark Shannon
2020-08-04
1
-59
/
+73
*
bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517)
Mark Shannon
2020-07-30
1
-21
/
+353
*
bpo-41218: Only mark async code with CO_COROUTINE. (#21357)
Matthias Bussonnier
2020-07-06
1
-4
/
+6
*
bpo-39151: Simplify DFS in the assembler (GH-17733)
Pablo Galindo
2020-06-28
1
-33
/
+18
*
bpo-40939: Remove the old parser (GH-20768)
Pablo Galindo
2020-06-11
1
-15
/
+0
*
Make sure that keyword arguments are merged into the arguments dictionary whe...
Mark Shannon
2020-06-01
1
-0
/
+3
*
bpo-40334: Don't downcast from Py_ssize_t to int (GH-19671)
Pablo Galindo
2020-04-23
1
-1
/
+1
*
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
Pablo Galindo
2020-04-22
1
-0
/
+67
*
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner
2020-04-13
1
-3
/
+1
*
bpo-40147: Fix a compiler warning on Windows in Python/compile.c (GH-19389)
Zackery Spytz
2020-04-06
1
-4
/
+5
*
bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)
Pablo Galindo
2020-04-03
1
-0
/
+29
*
bpo-40067: Improve error messages for multiple star expressions in assignment...
Furkan Önder
2020-03-26
1
-1
/
+1
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
1
-16
/
+12
*
Use calloc-based functions, not malloc. (GH-19152)
Andy Lester
2020-03-24
1
-8
/
+4
*
bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...
Batuhan Taşkaya
2020-03-19
1
-2
/
+5
*
bpo-39220: Do not optimise annotation if 'from __future__ import annotations'...
Pablo Galindo
2020-03-18
1
-1
/
+5
*
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Serhiy Storchaka
2020-03-17
1
-100
/
+43
[next]