diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 06:58:49 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 06:58:49 (GMT) |
commit | 50a1acb2abafbe7b99ad57ca566c1ff9bb8abf0f (patch) | |
tree | fc9ad776ef967b99c3c40b43ec7a90e960378fed /Lib/test/test_repr.py | |
parent | 95d97c7390beb72083dac5a801cadfb4c1379fe5 (diff) | |
download | cpython-50a1acb2abafbe7b99ad57ca566c1ff9bb8abf0f.zip cpython-50a1acb2abafbe7b99ad57ca566c1ff9bb8abf0f.tar.gz cpython-50a1acb2abafbe7b99ad57ca566c1ff9bb8abf0f.tar.bz2 |
Changed references to the reprlib module to use its new name.
Diffstat (limited to 'Lib/test/test_repr.py')
-rw-r--r-- | Lib/test/test_repr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index 1094816..50f728c 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): |