| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | add another test case | Benjamin Peterson | 2012-01-20 | 1 | -0/+1 |
|
|
* | check after comments, too (#13832) | Benjamin Peterson | 2012-01-19 | 1 | -0/+2 |
|
|
* | Issue #12705: Raise SyntaxError when compiling multiple statements as single ... | Meador Inge | 2012-01-19 | 1 | -0/+28 |
|
|
* | try to use the same str object for all code filenames when compiling or unmar... | Benjamin Peterson | 2011-05-27 | 1 | -0/+9 |
|
|
* | #11515: Merge with 3.1. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|\ |
|
| * | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|
|
| * | Merged revisions 73715 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -5/+5 |
|
|
* | | bring back commented out test | Benjamin Peterson | 2010-03-17 | 1 | -0/+4 |
|
|
* | | Merged revisions 79034 via svnmerge from | Benjamin Peterson | 2010-03-17 | 1 | -3/+3 |
|
|
* | | Merged revisions 77727 via svnmerge from | Ezio Melotti | 2010-01-24 | 1 | -3/+3 |
|
|
* | | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -8/+8 |
|
|
* | | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -4/+4 |
|
|
* | | Merged revisions 76230 via svnmerge from | Benjamin Peterson | 2009-11-13 | 1 | -0/+13 |
|
|
* | | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -5/+5 |
|
|
* | | Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,... | Benjamin Peterson | 2009-06-28 | 1 | -0/+4 |
|/ |
|