diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2009-10-09 07:17:59 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2009-10-09 07:17:59 +0000 |
| commit | b003cc938a424ae7a5263bc7994a5e7d17266364 (patch) | |
| tree | 6ccfbae454ce2a6f83a101df0029f1c2e0e23df7 /docutils/test/DocutilsTestSupport.py | |
| parent | 3e86e5017a02beddc64c6d8090d2e5d8105f3af3 (diff) | |
| download | docutils-b003cc938a424ae7a5263bc7994a5e7d17266364.tar.gz | |
One more cleanup as we require Python 2.3 now.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@6159 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/DocutilsTestSupport.py')
| -rw-r--r-- | docutils/test/DocutilsTestSupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docutils/test/DocutilsTestSupport.py b/docutils/test/DocutilsTestSupport.py index 2638ea9a1..5be3ec8b9 100644 --- a/docutils/test/DocutilsTestSupport.py +++ b/docutils/test/DocutilsTestSupport.py @@ -55,7 +55,7 @@ sys.path.insert(0, testroot) sys.path.append(os.path.normpath(os.path.join(testroot, '..', 'extras'))) try: - import docutils_difflib + import difflib import package_unittest import docutils import docutils.core @@ -140,7 +140,7 @@ class CustomTestCase(StandardTestCase): see the compare_output method and the parameter list of __init__. """ - compare = docutils_difflib.Differ().compare + compare = difflib.Differ().compare """Comparison method shared by all subclasses.""" def __init__(self, method_name, input, expected, id, run_in_debugger=0, |
