summaryrefslogtreecommitdiff
path: root/Lib/lib2to3
Commit message (Expand)AuthorAgeFilesLines
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* Merge 3.3, issue #17047: remove doubled words found in 2.7 toTerry Jan Reedy2013-03-111-2/+2
|\
| * Merge 3.2, issue #17047: remove doubled words found in 2.7 toTerry Jan Reedy2013-03-111-2/+2
| |\
| | * Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,Terry Jan Reedy2013-03-111-2/+2
* | | modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-121-6/+4
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-253-4/+4
* | | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-183-5/+5
* | | add fixer for reload() -> imp.reload() (closes #11797)\n\nPatch by Laurie Cla...Benjamin Peterson2012-12-074-18/+113
* | | merge 3.3 (#16573)Benjamin Peterson2012-11-292-6/+18
|\ \ \ | |/ /
| * | merge 3.2 (#16573)Benjamin Peterson2012-11-292-6/+18
| |\ \ | | |/
| | * enumerate only requires an iterable (closes #16573)Benjamin Peterson2012-11-292-6/+18
* | | Issue #16120: Use |yield from| in stdlib.Andrew Svetlov2012-10-062-10/+5
|/ /
* | merge 3.2Benjamin Peterson2012-09-255-42/+7
|\ \ | |/ |/|
| * Issue #15822: Fix installation of lib2to3 grammar pickles to ensureNed Deily2012-09-081-0/+17
| * remove get_prefix and set_prefix (#13248)Benjamin Peterson2012-03-142-37/+0
| * Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-271-3/+10
| |\
| * \ re.escape os.sep so that \ is interpreted properly in the regex.Gregory P. Smith2012-02-131-2/+4
| |\ \
| * \ \ Issue #13930: fix a / to use os.sep so that the test works on Windows.Gregory P. Smith2012-02-131-2/+4
| |\ \ \
| * | | | lib2to3 tests: Don't use deprecated API, switch to assertRegex()Victor Stinner2012-02-132-2/+2
| * | | | fix whitespace normalization before pushing.Gregory P. Smith2012-02-123-5/+7
| |\ \ \ \
| | * \ \ \ Issue #13930: Adds ability for 2to3 to write its output to a differentGregory P. Smith2012-02-123-5/+7
| | |\ \ \ \
| | | * \ \ \ merge 3.2 (#13766)Benjamin Peterson2012-01-153-5/+7
| | | |\ \ \ \
| | | | * \ \ \ - Re-enable lib2to3's test_parser.py tests, though with an expected failureBarry Warsaw2011-10-073-5/+7
| | | | |\ \ \ \
| | | | | * | | | - Re-enable lib2to3's test_parser.py tests, though with an expected failureBarry Warsaw2011-10-071-9/+15
| | | | | * | | | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-281-2/+2
| | | | | * | | | Merge fixes for #9860, #11104/#8688 and #12331 from 3.2Éric Araujo2011-07-311-7/+11
| | | | | |\ \ \ \
| | | | | * | | | | Closes #12536: Unused logger removed from lib2to3.Vinay Sajip2011-07-131-3/+1
| | | | | * | | | | #11565: Merge with 3.2.Ezio Melotti2011-03-164-10/+18
| | | | | |\ \ \ \ \
| | | | | | * \ \ \ \ merge 3.2Benjamin Peterson2011-03-073-16/+32
| | | | | | |\ \ \ \ \
| | | | | | * \ \ \ \ \ merge 3.1Benjamin Peterson2011-03-061-4/+7
| | | | | | |\ \ \ \ \ \
| | | | | | * | | | | | | Merged revisions 88661 via svnmerge fromBenjamin Peterson2011-02-263-10/+14
| | | | | | * | | | | | | Merged revisions 88535 via svnmerge fromBenjamin Peterson2011-02-241-0/+4
| | | | | | * | | | | | | Revert r88503 as Benjamin's request.Brett Cannon2011-02-231-4/+0
| | | | | | * | | | | | | Add lib2to3.__main__ to make it easier for debugging purposes to run 2to3.Brett Cannon2011-02-221-0/+4
* | | | | | | | | | | | | switch assertion to an explicit ValueErrorBenjamin Peterson2012-09-252-3/+3
* | | | | | | | | | | | | Issue #15822: Fix installation of lib2to3 grammar pickles to ensureNed Deily2012-09-081-0/+17
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-271-3/+10
* | | | | | | | | | | | Fix use of deprecated assertRegexpMatches method.Georg Brandl2012-02-201-1/+1
* | | | | | | | | | | | import re for the previous commit.Gregory P. Smith2012-02-131-0/+1
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | re.escape os.sep so that \ is interpreted properly in the regex.Gregory P. Smith2012-02-131-2/+3
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Issue #13930: fix a / to use os.sep so that the test works on Windows.Gregory P. Smith2012-02-131-2/+4
|/ / / / / / / / /
* | | | | | | | | fix whitespace normalization before pushing.Gregory P. Smith2012-02-121-5/+5
|/ / / / / / / /
* | | | | | | | Issue #13930: Adds ability for 2to3 to write its output to a differentGregory P. Smith2012-02-124-14/+233
|/ / / / / / /
* | | | | | | explain why we need this grammar file (closes #13766)Benjamin Peterson2012-01-151-1/+1
|/ / / / / /
* | | | | | - Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle filesBarry Warsaw2011-10-073-22/+30
| |_|_|_|/ |/| | | |
* | | | | Stop trying to write into the stdlib during lib2to3 tests (#12331).Éric Araujo2011-07-311-7/+11
|/ / / /
* | | | #11565: Merge with 3.1.Ezio Melotti2011-03-162-2/+2
|\ \ \ \ | | |_|/ | |/| |
| * | | merge 3.1Benjamin Peterson2011-03-072-2/+2
| |\ \ \
| | * \ \ merge 3.1Benjamin Peterson2011-03-062-2/+2
| | |\ \ \ | | | |/ / | | | | / | | | |/ | | |/|
| | | * Merged revisions 85551,86156-86157,86464 via svnmerge fromMartin v. Löwis2010-12-035-7/+9