[Python-checkins] cpython: Issue #14742: Don't include DirectoryTestCase from test_unparse in test_tools

mark.dickinson python-checkins at python.org
Mon May 7 23:37:02 CEST 2012


http://hg.python.org/cpython/rev/dbfacec7e368
changeset:   76828:dbfacec7e368
parent:      76826:d6324941b739
user:        Mark Dickinson <mdickinson at enthought.com>
date:        Mon May 07 22:36:43 2012 +0100
summary:
  Issue #14742:  Don't include DirectoryTestCase from test_unparse in test_tools until we can speed it up.

files:
  Lib/test/test_tools.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_tools.py b/Lib/test/test_tools.py
--- a/Lib/test/test_tools.py
+++ b/Lib/test/test_tools.py
@@ -124,7 +124,7 @@
 
 # Run the tests in Tools/parser/test_unparse.py
 with support.DirsOnSysPath(os.path.join(basepath, 'parser')):
-    from test_unparse import UnparseTestCase, DirectoryTestCase
+    from test_unparse import UnparseTestCase
 
 
 def test_main():

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list