summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-16 07:12:44 +0000
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-16 07:12:44 +0000
commit1f2ba4b6dad80f97aeecb5be8f35f44ca792c983 (patch)
treedc2c356b160e3769dc758b55f72eba4bdf2ec652 /Lib/test
parentcdc11337a221d45d40989bc256dd6cd0eb4b6371 (diff)
downloadcpython-git-1f2ba4b6dad80f97aeecb5be8f35f44ca792c983.tar.gz
Rename the repr module to reprlib.
Merged revisions 63357 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63357 | alexandre.vassalotti | 2008-05-16 02:58:49 -0400 (Fri, 16 May 2008) | 2 lines Changed references to the reprlib module to use its new name. ........
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test___all__.py2
-rw-r--r--Lib/test/test_repr.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index dbc55cdf3f..9d0487d8f5 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -114,7 +114,7 @@ class AllTest(unittest.TestCase):
self.check_all("quopri")
self.check_all("random")
self.check_all("re")
- self.check_all("repr")
+ self.check_all("reprlib")
self.check_all("rfc822")
self.check_all("rlcompleter")
self.check_all("robotparser")
diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py
index ac1a0a0f39..442c0482c7 100644
--- a/Lib/test/test_repr.py
+++ b/Lib/test/test_repr.py
@@ -9,8 +9,8 @@ import shutil
import unittest
from test.test_support import run_unittest
-from repr import repr as r # Don't shadow builtin repr
-from repr import Repr
+from reprlib import repr as r # Don't shadow builtin repr
+from reprlib import Repr
def nestedTuple(nesting):