summaryrefslogtreecommitdiffstats
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-05-23 05:03:59 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-05-23 05:03:59 (GMT)
commit2ee0e8eaec7f6e87664c2c9297633623cbd28868 (patch)
treecf9b7d1f858bcaf09e4b10769cfe2359283a3ab9 /Lib/pydoc.py
parent778d5cc4fb938a37383373ff27457831bc6aea63 (diff)
downloadcpython-2ee0e8eaec7f6e87664c2c9297633623cbd28868.zip
cpython-2ee0e8eaec7f6e87664c2c9297633623cbd28868.tar.gz
cpython-2ee0e8eaec7f6e87664c2c9297633623cbd28868.tar.bz2
Revert the renaming of repr to reprlib.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 987d213..8007ed0 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -53,7 +53,7 @@ Richard Chamberlain, for the first implementation of textdoc.
# path will be displayed.
import sys, imp, os, re, types, inspect, __builtin__, pkgutil
-from reprlib import Repr
+from repr import Repr
from string import expandtabs, find, join, lower, split, strip, rfind, rstrip
try:
from collections import deque