| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #25317: Converted doctests in test_tokenize to unittests. | Serhiy Storchaka | 2015-10-06 | 1 | -419/+398 |
|\ |
|
| * | Issue #25317: Converted doctests in test_tokenize to unittests. | Serhiy Storchaka | 2015-10-06 | 1 | -357/+332 |
|
|
* | | Issue #24619: Simplify async/await tokenization. | Yury Selivanov | 2015-07-23 | 1 | -0/+73 |
|
|
* | | Issue #24619: New approach for tokenizing async/await. | Yury Selivanov | 2015-07-22 | 1 | -2/+13 |
|
|
* | | Issue #20387: Merge test and patch from 3.4.4 | Jason R. Coombs | 2015-06-28 | 1 | -1/+20 |
|\ \
| |/ |
|
| * | Issue #20387: Correct test to properly capture expectation. | Jason R. Coombs | 2015-06-26 | 1 | -2/+2 |
|
|
| * | Issue #20387: Add test capturing failure to roundtrip indented code in tokeni... | Jason R. Coombs | 2015-06-20 | 1 | -0/+17 |
|
|
| * | Remove unused import and remove doctest-only import into doctests. | Jason R. Coombs | 2015-06-20 | 1 | -1/+3 |
|
|
* | | (Merge 3.5) Issue #23840: tokenize.open() now closes the temporary binary file | Victor Stinner | 2015-05-25 | 1 | -1/+9 |
|\ \
| |/ |
|
| * | Issue #23840: tokenize.open() now closes the temporary binary file on error to | Victor Stinner | 2015-05-25 | 1 | -1/+9 |
|
|
* | | Issue 24226: Fix parsing of many sequential one-line 'def' statements. | Yury Selivanov | 2015-05-18 | 1 | -0/+11 |
|
|
* | | PEP 0492 -- Coroutines with async and await syntax. Issue #24017. | Yury Selivanov | 2015-05-12 | 1 | -0/+186 |
|
|
* | | Issue #23681: Fixed Python 2 to 3 poring bugs. | Serhiy Storchaka | 2015-03-20 | 1 | -3/+4 |
|\ \
| |/ |
|
| * | Issue #23681: Fixed Python 2 to 3 poring bugs. | Serhiy Storchaka | 2015-03-20 | 1 | -3/+4 |
|
|
* | | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) | Benjamin Peterson | 2014-04-10 | 1 | -1/+4 |
|/ |
|
* | Issue #9974: When untokenizing, use row info to insert backslash+newline. | Terry Jan Reedy | 2014-02-24 | 1 | -1/+16 |
|
|
* | Issue #20750, Enable roundtrip tests for new 5-tuple untokenize. The | Terry Jan Reedy | 2014-02-23 | 1 | -14/+38 |
|
|
* | Issue #8478: Untokenizer.compat now processes first token from iterator input. | Terry Jan Reedy | 2014-02-18 | 1 | -0/+13 |
|
|
* | whitespace | Terry Jan Reedy | 2014-02-17 | 1 | -2/+2 |
|
|
* | Untokenize: An logically incorrect assert tested user input validity. | Terry Jan Reedy | 2014-02-17 | 1 | -1/+15 |
|
|
* | Issue #18960: Fix bugs with Python source code encoding in the second line. | Serhiy Storchaka | 2014-01-09 | 1 | -0/+33 |
|
|
* | Issue #18873: The tokenize module, IDLE, 2to3, and the findnocoding.py script | Serhiy Storchaka | 2013-09-16 | 1 | -0/+7 |
|
|
* | #16152: merge with 3.2. | Ezio Melotti | 2012-11-03 | 1 | -0/+4 |
|\ |
|
| * | #16152: fix tokenize to ignore whitespace at the end of the code when no newl... | Ezio Melotti | 2012-11-03 | 1 | -0/+5 |
|
|
* | | Merge branch | Florent Xicluna | 2012-07-07 | 1 | -0/+4 |
|\ \
| |/ |
|
| * | Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding d... | Florent Xicluna | 2012-07-07 | 1 | -0/+4 |
|
|
* | | Issue #15096: Drop support for the ur string prefix | Christian Heimes | 2012-06-20 | 1 | -20/+2 |
|
|
* | | Issue #15054: Fix incorrect tokenization of 'b' string literals. | Meador Inge | 2012-06-17 | 1 | -0/+76 |
|
|
* | | Issue #14629: Mention the filename in SyntaxError exceptions from | Brett Cannon | 2012-04-20 | 1 | -0/+29 |
|
|
* | | merge 3.2: issue 14629 | Martin v. Löwis | 2012-04-20 | 1 | -0/+10 |
|\ \
| |/ |
|
| * | Issue #14629: Raise SyntaxError in tokenizer.detect_encoding | Martin v. Löwis | 2012-04-20 | 1 | -0/+10 |
|
|
* | | Updated tokenize to support the inverse byte literals new in 3.3 | Armin Ronacher | 2012-03-04 | 1 | -0/+12 |
|
|
* | | Issue #2134: Add support for tokenize.TokenInfo.exact_type. | Meador Inge | 2012-01-19 | 1 | -1/+74 |
|
|
* | | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). | Ezio Melotti | 2011-09-28 | 1 | -1/+1 |
|/ |
|
* | tokenize is just broken on test_pep3131.py | Benjamin Peterson | 2011-08-13 | 1 | -0/+3 |
|
|
* | Issue #12587: Correct faulty test file and reference in test_tokenize. | Ned Deily | 2011-07-19 | 1 | -1/+1 |
|
|
* | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -29/+29 |
|
|
* | test_tokenize: use self.assertEqual() instead of plain assert | Victor Stinner | 2010-11-09 | 1 | -4/+4 |
|
|
* | Issue #10335: Add tokenize.open(), detect the file encoding using | Victor Stinner | 2010-11-09 | 1 | -1/+22 |
|
|
* | Fix #10258 - clean up resource warning | Brian Curtin | 2010-10-30 | 1 | -2/+4 |
|
|
* | Replace the "compiler" resource with the more generic "cpu", so | Antoine Pitrou | 2010-10-14 | 1 | -2/+2 |
|
|
* | handle names starting with non-ascii characters correctly #9712 | Benjamin Peterson | 2010-08-30 | 1 | -0/+13 |
|
|
* | remove pointless coding cookie | Benjamin Peterson | 2010-08-30 | 1 | -2/+0 |
|
|
* | Issue #9337: Make float.__str__ identical to float.__repr__. | Mark Dickinson | 2010-08-04 | 1 | -2/+2 |
|
|
* | Merged revisions 82356 via svnmerge from | Mark Dickinson | 2010-06-29 | 1 | -1/+1 |
|
|
* | in tokenize.detect_encoding(), return utf-8-sig when a BOM is found | Benjamin Peterson | 2010-03-18 | 1 | -5/+5 |
|
|
* | Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-... | Benjamin Peterson | 2009-11-13 | 1 | -0/+18 |
|
|
* | normalize latin-1 and utf-8 variant encodings like the builtin tokenizer does | Benjamin Peterson | 2009-10-09 | 1 | -1/+29 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -1/+1 |
|
|
* | raise a SyntaxError in detect_encoding() when a codec lookup fails like the b... | Benjamin Peterson | 2008-12-12 | 1 | -0/+2 |
|
|