diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 07:12:44 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-16 07:12:44 (GMT) |
commit | 1f2ba4b6dad80f97aeecb5be8f35f44ca792c983 (patch) | |
tree | dc2c356b160e3769dc758b55f72eba4bdf2ec652 /Demo | |
parent | cdc11337a221d45d40989bc256dd6cd0eb4b6371 (diff) | |
download | cpython-1f2ba4b6dad80f97aeecb5be8f35f44ca792c983.zip cpython-1f2ba4b6dad80f97aeecb5be8f35f44ca792c983.tar.gz cpython-1f2ba4b6dad80f97aeecb5be8f35f44ca792c983.tar.bz2 |
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 'Demo')
-rwxr-xr-x | Demo/pdist/cmptree.py | 2 | ||||
-rwxr-xr-x | Demo/pdist/server.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Demo/pdist/cmptree.py b/Demo/pdist/cmptree.py index 1e9f985e..f804d31 100755 --- a/Demo/pdist/cmptree.py +++ b/Demo/pdist/cmptree.py @@ -1,7 +1,7 @@ """Compare local and remote dictionaries and transfer differing files -- like rdist.""" import sys -from repr import repr +from reprlib import repr import FSProxy import time import os diff --git a/Demo/pdist/server.py b/Demo/pdist/server.py index 7e77971..b3943ff 100755 --- a/Demo/pdist/server.py +++ b/Demo/pdist/server.py @@ -4,7 +4,7 @@ import sys import socket import pickle from fnmatch import fnmatch -from repr import repr +from reprlib import repr # Default verbosity (0 = silent, 1 = print connections, 2 = print requests too) |