diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-11-13 21:51:26 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-11-13 21:51:26 +0000 |
commit | 88768483235beb5de12addee3d73d4e252f6f7cb (patch) | |
tree | 34bd51023bc32eb2aebadb2352e1d706b20f26a4 /Lib/pprint.py | |
parent | A specific test for bug #481221, getaddrlist() failing on long (diff) | |
download | cpython-88768483235beb5de12addee3d73d4e252f6f7cb.tar.gz cpython-88768483235beb5de12addee3d73d4e252f6f7cb.tar.bz2 cpython-88768483235beb5de12addee3d73d4e252f6f7cb.zip |
Whitespace normalization.
Diffstat (limited to 'Lib/pprint.py')
-rw-r--r-- | Lib/pprint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pprint.py b/Lib/pprint.py index 29526857328..b16fb080207 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py @@ -283,7 +283,7 @@ def _safe_repr(object, context, maxlevels, level): recursive = 1 del context[objid] return format % _commajoin(components), readable, recursive - + rep = `object` return rep, (rep and not rep.startswith('<')), 0 |