summaryrefslogtreecommitdiff
path: root/Lib/test/test_lib2to3.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2011-10-07 14:44:49 -0400
committerBarry Warsaw <barry@python.org>2011-10-07 14:44:49 -0400
commit7fea0f51888fe802c97ac3b0f9e4d1f5a88f95eb (patch)
tree6263843522ecab2acdda0b65f2d79c2e9dbd71bf /Lib/test/test_lib2to3.py
parentd1c4dbff49983d05087cecdc8ac38ed81da0616d (diff)
downloadcpython-7fea0f51888fe802c97ac3b0f9e4d1f5a88f95eb.tar.gz
- Issue #11250: Back port fix from 3.3 branch, so that 2to3 can handle files
with line feeds. This was ported from the sandbox to the 3.3 branch, but didn't make it into 3.2. - Re-enable lib2to3's test_parser.py tests, though with an expected failure (see issue 13125).
Diffstat (limited to 'Lib/test/test_lib2to3.py')
-rw-r--r--Lib/test/test_lib2to3.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_lib2to3.py b/Lib/test/test_lib2to3.py
index 0d6f9a36a6..1afaf70ffa 100644
--- a/Lib/test/test_lib2to3.py
+++ b/Lib/test/test_lib2to3.py
@@ -1,6 +1,7 @@
# Skipping test_parser and test_all_fixers
# because of running
from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
+ test_parser,
test_main as test_main_)
import unittest
from test.support import run_unittest
@@ -9,7 +10,7 @@ def suite():
tests = unittest.TestSuite()
loader = unittest.TestLoader()
for m in (test_fixers, test_pytree,test_util, test_refactor,
- test_main_):
+ test_parser, test_main_):
tests.addTests(loader.loadTestsFromModule(m))
return tests