diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-11-13 21:51:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-11-13 21:51:26 (GMT) |
commit | 88768483235beb5de12addee3d73d4e252f6f7cb (patch) | |
tree | 34bd51023bc32eb2aebadb2352e1d706b20f26a4 /Lib/pprint.py | |
parent | 135cce87188a81b60ca83c9e17c1669a68c41480 (diff) | |
download | cpython-88768483235beb5de12addee3d73d4e252f6f7cb.zip cpython-88768483235beb5de12addee3d73d4e252f6f7cb.tar.gz cpython-88768483235beb5de12addee3d73d4e252f6f7cb.tar.bz2 |
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 2952685..b16fb08 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 |