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
*
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)
Inada Naoki
2021-04-04
1
-1/+1
*
Mark POP_TOP at end of expression statement as artificial, to conform to PEP ...
Mark Shannon
2021-03-15
1
-0/+8
*
bpo-39316: Make sure that attribute accesses and stores, including method cal...
Mark Shannon
2021-03-14
1
-0/+45
*
bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)
Inada Naoki
2021-02-10
1
-0/+11
*
bpo-42615: Delete redundant jump instructions that only bypass empty blocks (...
Om G
2020-12-16
1
-0/+28
*
bpo-42246: Remove DO_NOT_EMIT_BYTECODE macros, so that while loops and if sta...
Mark Shannon
2020-12-15
1
-4/+4
*
bpo-42246: Don't forget the entry block when ensuring that all exits have a l...
Mark Shannon
2020-12-04
1
-0/+18
*
bpo-42246: Make sure that line number is correct after a return, as required ...
Mark Shannon
2020-12-02
1
-1/+34
*
bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)
Mark Shannon
2020-11-17
1
-0/+24
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
1
-2/+2
*
bpo-41531: Fix compilation of dict literals with more than 0xFFFF elements (G...
Pablo Galindo
2020-08-13
1
-0/+10
*
bpo-40275: Use new test.support helper submodules in tests (GH-21151)
Hai Shi
2020-06-25
1
-1/+3
*
bpo-40334: Disallow invalid single statements in the new parser (GH-19774)
Lysandros Nikolaou
2020-04-29
1
-1/+0
*
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
Victor Stinner
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/+1
*
bpo-38640: Allow break and continue in always false while loops (GH-16992)
Pablo Galindo
2019-10-30
1
-0/+18
*
bpo-37500: Make sure dead code does not generate bytecode but also detect syn...
Pablo Galindo
2019-07-15
1
-0/+34
*
bpo-34100: compile: Re-enable frozenset merging (GH-10760)
INADA Naoki
2018-11-28
1
-0/+8
*
bpo-34100: Partially revert merge_consts_recursive() (GH-10743)
Victor Stinner
2018-11-27
1
-10/+0
*
bpo-34100: Merge constants recursively (GH-8341)
INADA Naoki
2018-11-26
1
-0/+10
*
bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418)
Gregory P. Smith
2018-11-09
1
-0/+19
*
bpo-35133: Fix mistakes when concatenate string literals on different lines. ...
Serhiy Storchaka
2018-11-05
1
-1/+1
*
bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)
Serhiy Storchaka
2018-03-18
1
-1/+3
*
bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)
Serhiy Storchaka
2018-03-02
1
-8/+2
*
bpo-31113: Get rid of recursion in the compiler for normal control flow. (#3015)
Serhiy Storchaka
2018-01-11
1
-0/+5
*
bpo-24340: Fix estimation of the code stack size. (#5076)
Serhiy Storchaka
2018-01-09
1
-1/+290
*
bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880)
Serhiy Storchaka
2017-12-15
1
-0/+1
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-0/+3
|
\
|
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-0/+3
|
|
\
|
|
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-0/+3
*
|
|
Issue #18896: Python function can now have more than 255 parameters.
Serhiy Storchaka
2016-12-16
1
-9/+2
|
/
/
*
|
Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder().
Brett Cannon
2016-09-07
1
-0/+10
*
|
Issue #26754: Undocumented support of general bytes-like objects
Serhiy Storchaka
2016-08-06
1
-2/+5
|
/
*
Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as
Serhiy Storchaka
2016-06-18
1
-0/+7
*
code_richcompare() now uses the constants types
Victor Stinner
2016-01-22
1
-0/+82
*
Issue #25388: Fixed tokenizer crash when processing undecodable source code
Serhiy Storchaka
2015-11-14
1
-0/+10
|
\
|
*
Issue #25388: Fixed tokenizer crash when processing undecodable source code
Serhiy Storchaka
2015-11-14
1
-0/+10
*
|
Issue #24802: Update test case for ValueError in 3.5
Martin Panter
2015-11-08
1
-3/+2
*
|
Issue #24802: Merge null termination fixes from 3.4 into 3.5
Martin Panter
2015-11-07
1
-0/+21
|
\
\
|
|
/
|
*
Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary
Martin Panter
2015-11-07
1
-0/+21
*
|
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
2015-07-03
1
-1/+1
*
|
in dict displays, evaluate the key before the value (closes #11205)
Benjamin Peterson
2015-05-28
1
-0/+11
*
|
Fix remaining tests and remove an unused import.
Berker Peksag
2015-05-06
1
-1/+2
*
|
merge 3.4 (#24022)
Benjamin Peterson
2015-04-21
1
-1/+13
|
\
\
|
|
/
|
*
do not call into python api if an exception is set (#24022)
Benjamin Peterson
2015-04-21
1
-1/+13
*
|
Issue #23731: Implement PEP 488.
Brett Cannon
2015-04-13
1
-1/+1
|
/
*
Issue #22221: Add tests for compile() with source encoding cookie.
Serhiy Storchaka
2014-09-05
1
-3/+20
*
Issue #21523: Fix over-pessimistic computation of the stack effect of some op...
Antoine Pitrou
2014-05-23
1
-3/+39
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
1
-1/+1
*
Issue #5765: Apply a hard recursion limit in the compiler
Nick Coghlan
2012-11-04
1
-0/+27
[next]