1998-03-26 17:13:24 -04:00
|
|
|
# Author: Fred L. Drake, Jr.
|
2001-10-09 17:53:48 -03:00
|
|
|
# fdrake@acm.org
|
1997-04-15 21:49:59 -03:00
|
|
|
#
|
|
|
|
# This is a simple little module I wrote to make life easier. I didn't
|
|
|
|
# see anything quite like it in the library, though I may have overlooked
|
|
|
|
# something. I wrote this when I was trying to read some heavily nested
|
2000-07-16 09:04:32 -03:00
|
|
|
# tuples with fairly non-descriptive content. This is modeled very much
|
1997-04-15 21:49:59 -03:00
|
|
|
# after Lisp/Scheme - style pretty-printing of lists. If you find it
|
|
|
|
# useful, thank small children who sleep at night.
|
|
|
|
|
|
|
|
"""Support to pretty-print lists, tuples, & dictionaries recursively.
|
|
|
|
|
|
|
|
Very simple, but useful, especially in debugging data structures.
|
|
|
|
|
1997-04-16 13:59:30 -03:00
|
|
|
Classes
|
|
|
|
-------
|
|
|
|
|
|
|
|
PrettyPrinter()
|
|
|
|
Handle pretty-printing operations onto a stream using a configured
|
|
|
|
set of formatting parameters.
|
|
|
|
|
1997-04-15 21:49:59 -03:00
|
|
|
Functions
|
|
|
|
---------
|
|
|
|
|
|
|
|
pformat()
|
|
|
|
Format a Python object into a pretty-printed representation.
|
|
|
|
|
|
|
|
pprint()
|
2004-05-14 13:31:56 -03:00
|
|
|
Pretty-print a Python object to a stream [default is sys.stdout].
|
1997-04-15 21:49:59 -03:00
|
|
|
|
1997-04-16 13:59:30 -03:00
|
|
|
saferepr()
|
|
|
|
Generate a 'standard' repr()-like value, but protect against recursive
|
|
|
|
data structures.
|
1997-04-15 21:49:59 -03:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
2002-12-31 03:14:18 -04:00
|
|
|
import sys as _sys
|
1997-04-15 21:49:59 -03:00
|
|
|
|
2007-08-08 22:03:29 -03:00
|
|
|
from io import StringIO as _StringIO
|
1997-04-16 13:59:30 -03:00
|
|
|
|
2001-02-11 22:00:42 -04:00
|
|
|
__all__ = ["pprint","pformat","isreadable","isrecursive","saferepr",
|
|
|
|
"PrettyPrinter"]
|
1997-04-16 13:59:30 -03:00
|
|
|
|
2001-11-01 13:50:38 -04:00
|
|
|
# cache these for faster access:
|
|
|
|
_commajoin = ", ".join
|
|
|
|
_id = id
|
|
|
|
_len = len
|
|
|
|
_type = type
|
|
|
|
|
|
|
|
|
2003-12-03 16:26:05 -04:00
|
|
|
def pprint(object, stream=None, indent=1, width=80, depth=None):
|
2004-05-14 13:31:56 -03:00
|
|
|
"""Pretty-print a Python object to a stream [default is sys.stdout]."""
|
2003-12-03 16:26:05 -04:00
|
|
|
printer = PrettyPrinter(
|
|
|
|
stream=stream, indent=indent, width=width, depth=depth)
|
1997-04-16 13:59:30 -03:00
|
|
|
printer.pprint(object)
|
|
|
|
|
2003-12-03 16:26:05 -04:00
|
|
|
def pformat(object, indent=1, width=80, depth=None):
|
1997-04-16 13:59:30 -03:00
|
|
|
"""Format a Python object into a pretty-printed representation."""
|
2003-12-03 16:26:05 -04:00
|
|
|
return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object)
|
1997-04-16 13:59:30 -03:00
|
|
|
|
2001-05-14 04:05:58 -03:00
|
|
|
def saferepr(object):
|
|
|
|
"""Version of repr() which can handle recursive data structures."""
|
2001-11-01 13:50:38 -04:00
|
|
|
return _safe_repr(object, {}, None, 0)[0]
|
1997-04-16 13:59:30 -03:00
|
|
|
|
1997-07-18 17:42:39 -03:00
|
|
|
def isreadable(object):
|
|
|
|
"""Determine if saferepr(object) is readable by eval()."""
|
2001-11-01 13:50:38 -04:00
|
|
|
return _safe_repr(object, {}, None, 0)[1]
|
1997-07-18 17:42:39 -03:00
|
|
|
|
|
|
|
def isrecursive(object):
|
|
|
|
"""Determine if object requires a recursive representation."""
|
2001-11-01 13:50:38 -04:00
|
|
|
return _safe_repr(object, {}, None, 0)[2]
|
1997-04-16 13:59:30 -03:00
|
|
|
|
|
|
|
class PrettyPrinter:
|
|
|
|
def __init__(self, indent=1, width=80, depth=None, stream=None):
|
1998-03-26 17:13:24 -04:00
|
|
|
"""Handle pretty printing operations onto a stream using a set of
|
|
|
|
configured parameters.
|
|
|
|
|
|
|
|
indent
|
|
|
|
Number of spaces to indent for each level of nesting.
|
|
|
|
|
|
|
|
width
|
|
|
|
Attempted maximum number of columns in the output.
|
|
|
|
|
|
|
|
depth
|
|
|
|
The maximum depth to print out nested structures.
|
|
|
|
|
|
|
|
stream
|
|
|
|
The desired output stream. If omitted (or false), the standard
|
|
|
|
output stream available at construction will be used.
|
|
|
|
|
|
|
|
"""
|
|
|
|
indent = int(indent)
|
|
|
|
width = int(width)
|
2003-12-03 16:15:28 -04:00
|
|
|
assert indent >= 0, "indent must be >= 0"
|
2001-05-14 04:05:58 -03:00
|
|
|
assert depth is None or depth > 0, "depth must be > 0"
|
2003-12-03 16:15:28 -04:00
|
|
|
assert width, "width must be != 0"
|
2002-07-08 09:28:06 -03:00
|
|
|
self._depth = depth
|
|
|
|
self._indent_per_level = indent
|
|
|
|
self._width = width
|
2002-06-01 13:07:16 -03:00
|
|
|
if stream is not None:
|
2002-07-08 09:28:06 -03:00
|
|
|
self._stream = stream
|
1998-03-26 17:13:24 -04:00
|
|
|
else:
|
2002-12-31 03:14:18 -04:00
|
|
|
self._stream = _sys.stdout
|
1997-04-16 13:59:30 -03:00
|
|
|
|
|
|
|
def pprint(self, object):
|
2005-11-11 14:18:51 -04:00
|
|
|
self._format(object, self._stream, 0, 0, {}, 0)
|
|
|
|
self._stream.write("\n")
|
1997-04-16 13:59:30 -03:00
|
|
|
|
|
|
|
def pformat(self, object):
|
2002-12-31 03:14:18 -04:00
|
|
|
sio = _StringIO()
|
2002-07-08 09:28:06 -03:00
|
|
|
self._format(object, sio, 0, 0, {}, 0)
|
1998-03-26 17:13:24 -04:00
|
|
|
return sio.getvalue()
|
1997-04-16 13:59:30 -03:00
|
|
|
|
1997-07-18 17:42:39 -03:00
|
|
|
def isrecursive(self, object):
|
2002-12-31 03:14:18 -04:00
|
|
|
return self.format(object, {}, 0, 0)[2]
|
1997-07-18 17:42:39 -03:00
|
|
|
|
|
|
|
def isreadable(self, object):
|
2002-12-31 03:14:18 -04:00
|
|
|
s, readable, recursive = self.format(object, {}, 0, 0)
|
2002-04-02 01:08:35 -04:00
|
|
|
return readable and not recursive
|
1997-07-18 17:42:39 -03:00
|
|
|
|
2002-07-08 09:28:06 -03:00
|
|
|
def _format(self, object, stream, indent, allowance, context, level):
|
1998-03-26 17:13:24 -04:00
|
|
|
level = level + 1
|
2001-11-01 13:50:38 -04:00
|
|
|
objid = _id(object)
|
|
|
|
if objid in context:
|
|
|
|
stream.write(_recursion(object))
|
2002-07-08 09:28:06 -03:00
|
|
|
self._recursive = True
|
|
|
|
self._readable = False
|
2001-11-01 13:50:38 -04:00
|
|
|
return
|
2002-07-08 09:28:06 -03:00
|
|
|
rep = self._repr(object, context, level - 1)
|
2001-11-01 13:50:38 -04:00
|
|
|
typ = _type(object)
|
2002-07-08 09:28:06 -03:00
|
|
|
sepLines = _len(rep) > (self._width - 1 - indent - allowance)
|
2001-11-01 13:50:38 -04:00
|
|
|
write = stream.write
|
|
|
|
|
|
|
|
if sepLines:
|
2004-11-15 09:51:41 -04:00
|
|
|
r = getattr(typ, "__repr__", None)
|
2003-12-03 16:15:28 -04:00
|
|
|
if issubclass(typ, dict) and r is dict.__repr__:
|
2001-11-01 13:50:38 -04:00
|
|
|
write('{')
|
2002-07-08 09:28:06 -03:00
|
|
|
if self._indent_per_level > 1:
|
|
|
|
write((self._indent_per_level - 1) * ' ')
|
2001-11-01 13:50:38 -04:00
|
|
|
length = _len(object)
|
|
|
|
if length:
|
|
|
|
context[objid] = 1
|
2002-07-08 09:28:06 -03:00
|
|
|
indent = indent + self._indent_per_level
|
2007-02-11 18:59:48 -04:00
|
|
|
items = sorted(object.items())
|
2001-11-01 13:50:38 -04:00
|
|
|
key, ent = items[0]
|
2002-07-08 09:28:06 -03:00
|
|
|
rep = self._repr(key, context, level)
|
2001-11-01 13:50:38 -04:00
|
|
|
write(rep)
|
|
|
|
write(': ')
|
2002-07-08 09:28:06 -03:00
|
|
|
self._format(ent, stream, indent + _len(rep) + 2,
|
2001-11-01 13:50:38 -04:00
|
|
|
allowance + 1, context, level)
|
|
|
|
if length > 1:
|
|
|
|
for key, ent in items[1:]:
|
2002-07-08 09:28:06 -03:00
|
|
|
rep = self._repr(key, context, level)
|
2001-11-28 01:49:39 -04:00
|
|
|
write(',\n%s%s: ' % (' '*indent, rep))
|
2002-07-08 09:28:06 -03:00
|
|
|
self._format(ent, stream, indent + _len(rep) + 2,
|
2001-11-01 13:50:38 -04:00
|
|
|
allowance + 1, context, level)
|
2002-07-08 09:28:06 -03:00
|
|
|
indent = indent - self._indent_per_level
|
2001-11-01 13:50:38 -04:00
|
|
|
del context[objid]
|
|
|
|
write('}')
|
|
|
|
return
|
|
|
|
|
Merged revisions 60176-60209 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60178 | georg.brandl | 2008-01-21 22:05:49 +0100 (Mon, 21 Jan 2008) | 2 lines
#1715: include sub-extension modules in pydoc text output.
........
r60179 | georg.brandl | 2008-01-21 22:14:21 +0100 (Mon, 21 Jan 2008) | 2 lines
Add a "const" to make gcc happy.
........
r60180 | georg.brandl | 2008-01-21 22:19:07 +0100 (Mon, 21 Jan 2008) | 2 lines
Add the correct build dir when building with pydebug.
........
r60181 | georg.brandl | 2008-01-21 22:23:15 +0100 (Mon, 21 Jan 2008) | 3 lines
Patch #1720595: add T_BOOL to the range of structmember types.
Patch by Angelo Mottola, reviewed by MvL, tests by me.
........
r60182 | georg.brandl | 2008-01-21 22:28:32 +0100 (Mon, 21 Jan 2008) | 2 lines
Reformat some ugly code.
........
r60187 | brett.cannon | 2008-01-22 00:50:16 +0100 (Tue, 22 Jan 2008) | 4 lines
Make's MAKEFLAGS variable is set to a string containing the single-letter
arguments to Make. This means there are no hyphens. Fix the '-s' check to
silence distutils to now work.
........
r60188 | gregory.p.smith | 2008-01-22 01:19:41 +0100 (Tue, 22 Jan 2008) | 3 lines
accepts and closes issue #1221598: adds an optional callback to ftplib.FTP
storbinary() and storlines() methods.
........
r60189 | gregory.p.smith | 2008-01-22 02:12:02 +0100 (Tue, 22 Jan 2008) | 2 lines
Replace spam.acquire() try: ... finally: spam.release() with "with spam:"
........
r60190 | gregory.p.smith | 2008-01-22 02:20:42 +0100 (Tue, 22 Jan 2008) | 4 lines
- Fix Issue #1703448: A joined thread could show up in the
threading.enumerate() list after the join() for a brief period until
it actually exited.
........
r60193 | georg.brandl | 2008-01-22 08:53:31 +0100 (Tue, 22 Jan 2008) | 2 lines
Fix \xhh specs, #1889.
........
r60198 | christian.heimes | 2008-01-22 16:01:25 +0100 (Tue, 22 Jan 2008) | 1 line
Fixed a missing (X) in define
........
r60199 | christian.heimes | 2008-01-22 16:25:18 +0100 (Tue, 22 Jan 2008) | 2 lines
Don't repeat yourself
Added the macros PyModule_AddIntMacro and PyModule_AddStringMacro. They shorten PyModule_AddIntConstant(m, "AF_INET", AF_INET) to PyModule_AddIntMacro(m, AF_INET)
........
r60201 | raymond.hettinger | 2008-01-22 20:51:41 +0100 (Tue, 22 Jan 2008) | 1 line
Document when to use izip_longest().
........
r60202 | georg.brandl | 2008-01-22 20:56:03 +0100 (Tue, 22 Jan 2008) | 2 lines
Fix for #1087741 patch.
........
r60203 | raymond.hettinger | 2008-01-22 21:18:53 +0100 (Tue, 22 Jan 2008) | 1 line
Give zip() the same guarantee as izip() for left-to-right evaluation.
........
r60204 | raymond.hettinger | 2008-01-22 23:09:26 +0100 (Tue, 22 Jan 2008) | 1 line
Improve variable name in sample code
........
r60205 | gregory.p.smith | 2008-01-23 00:15:34 +0100 (Wed, 23 Jan 2008) | 2 lines
docstring and comment updates suggested by Giampaolo Rodola'
........
r60207 | raymond.hettinger | 2008-01-23 01:04:40 +0100 (Wed, 23 Jan 2008) | 1 line
Let pprint() support sets and frozensets (suggested by David Mertz).
........
r60208 | guido.van.rossum | 2008-01-23 02:18:27 +0100 (Wed, 23 Jan 2008) | 4 lines
I'm tired of these tests breaking at Google due to our large number of
users and groups in LDAP/NIS. So I'm limiting the extra-heavy part of
the tests to passwd/group files with at most 1000 entries.
........
2008-01-23 04:24:23 -04:00
|
|
|
if ((issubclass(typ, list) and r is list.__repr__) or
|
|
|
|
(issubclass(typ, tuple) and r is tuple.__repr__) or
|
|
|
|
(issubclass(typ, set) and r is set.__repr__) or
|
|
|
|
(issubclass(typ, frozenset) and r is frozenset.__repr__)
|
|
|
|
):
|
2003-12-03 16:15:28 -04:00
|
|
|
if issubclass(typ, list):
|
2001-11-01 13:50:38 -04:00
|
|
|
write('[')
|
|
|
|
endchar = ']'
|
Merged revisions 60176-60209 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60178 | georg.brandl | 2008-01-21 22:05:49 +0100 (Mon, 21 Jan 2008) | 2 lines
#1715: include sub-extension modules in pydoc text output.
........
r60179 | georg.brandl | 2008-01-21 22:14:21 +0100 (Mon, 21 Jan 2008) | 2 lines
Add a "const" to make gcc happy.
........
r60180 | georg.brandl | 2008-01-21 22:19:07 +0100 (Mon, 21 Jan 2008) | 2 lines
Add the correct build dir when building with pydebug.
........
r60181 | georg.brandl | 2008-01-21 22:23:15 +0100 (Mon, 21 Jan 2008) | 3 lines
Patch #1720595: add T_BOOL to the range of structmember types.
Patch by Angelo Mottola, reviewed by MvL, tests by me.
........
r60182 | georg.brandl | 2008-01-21 22:28:32 +0100 (Mon, 21 Jan 2008) | 2 lines
Reformat some ugly code.
........
r60187 | brett.cannon | 2008-01-22 00:50:16 +0100 (Tue, 22 Jan 2008) | 4 lines
Make's MAKEFLAGS variable is set to a string containing the single-letter
arguments to Make. This means there are no hyphens. Fix the '-s' check to
silence distutils to now work.
........
r60188 | gregory.p.smith | 2008-01-22 01:19:41 +0100 (Tue, 22 Jan 2008) | 3 lines
accepts and closes issue #1221598: adds an optional callback to ftplib.FTP
storbinary() and storlines() methods.
........
r60189 | gregory.p.smith | 2008-01-22 02:12:02 +0100 (Tue, 22 Jan 2008) | 2 lines
Replace spam.acquire() try: ... finally: spam.release() with "with spam:"
........
r60190 | gregory.p.smith | 2008-01-22 02:20:42 +0100 (Tue, 22 Jan 2008) | 4 lines
- Fix Issue #1703448: A joined thread could show up in the
threading.enumerate() list after the join() for a brief period until
it actually exited.
........
r60193 | georg.brandl | 2008-01-22 08:53:31 +0100 (Tue, 22 Jan 2008) | 2 lines
Fix \xhh specs, #1889.
........
r60198 | christian.heimes | 2008-01-22 16:01:25 +0100 (Tue, 22 Jan 2008) | 1 line
Fixed a missing (X) in define
........
r60199 | christian.heimes | 2008-01-22 16:25:18 +0100 (Tue, 22 Jan 2008) | 2 lines
Don't repeat yourself
Added the macros PyModule_AddIntMacro and PyModule_AddStringMacro. They shorten PyModule_AddIntConstant(m, "AF_INET", AF_INET) to PyModule_AddIntMacro(m, AF_INET)
........
r60201 | raymond.hettinger | 2008-01-22 20:51:41 +0100 (Tue, 22 Jan 2008) | 1 line
Document when to use izip_longest().
........
r60202 | georg.brandl | 2008-01-22 20:56:03 +0100 (Tue, 22 Jan 2008) | 2 lines
Fix for #1087741 patch.
........
r60203 | raymond.hettinger | 2008-01-22 21:18:53 +0100 (Tue, 22 Jan 2008) | 1 line
Give zip() the same guarantee as izip() for left-to-right evaluation.
........
r60204 | raymond.hettinger | 2008-01-22 23:09:26 +0100 (Tue, 22 Jan 2008) | 1 line
Improve variable name in sample code
........
r60205 | gregory.p.smith | 2008-01-23 00:15:34 +0100 (Wed, 23 Jan 2008) | 2 lines
docstring and comment updates suggested by Giampaolo Rodola'
........
r60207 | raymond.hettinger | 2008-01-23 01:04:40 +0100 (Wed, 23 Jan 2008) | 1 line
Let pprint() support sets and frozensets (suggested by David Mertz).
........
r60208 | guido.van.rossum | 2008-01-23 02:18:27 +0100 (Wed, 23 Jan 2008) | 4 lines
I'm tired of these tests breaking at Google due to our large number of
users and groups in LDAP/NIS. So I'm limiting the extra-heavy part of
the tests to passwd/group files with at most 1000 entries.
........
2008-01-23 04:24:23 -04:00
|
|
|
elif issubclass(typ, set):
|
|
|
|
write('{')
|
|
|
|
endchar = '}'
|
|
|
|
object = sorted(object)
|
|
|
|
indent += 4
|
|
|
|
elif issubclass(typ, frozenset):
|
|
|
|
write('frozenset([')
|
|
|
|
endchar = '])'
|
|
|
|
object = sorted(object)
|
|
|
|
indent += 9
|
2001-11-01 13:50:38 -04:00
|
|
|
else:
|
|
|
|
write('(')
|
|
|
|
endchar = ')'
|
2002-07-08 09:28:06 -03:00
|
|
|
if self._indent_per_level > 1:
|
|
|
|
write((self._indent_per_level - 1) * ' ')
|
2001-11-01 13:50:38 -04:00
|
|
|
length = _len(object)
|
|
|
|
if length:
|
|
|
|
context[objid] = 1
|
2002-07-08 09:28:06 -03:00
|
|
|
indent = indent + self._indent_per_level
|
|
|
|
self._format(object[0], stream, indent, allowance + 1,
|
|
|
|
context, level)
|
2001-11-01 13:50:38 -04:00
|
|
|
if length > 1:
|
|
|
|
for ent in object[1:]:
|
|
|
|
write(',\n' + ' '*indent)
|
2002-07-08 09:28:06 -03:00
|
|
|
self._format(ent, stream, indent,
|
2001-11-01 13:50:38 -04:00
|
|
|
allowance + 1, context, level)
|
2002-07-08 09:28:06 -03:00
|
|
|
indent = indent - self._indent_per_level
|
2001-11-01 13:50:38 -04:00
|
|
|
del context[objid]
|
2003-12-03 16:15:28 -04:00
|
|
|
if issubclass(typ, tuple) and length == 1:
|
2001-11-01 13:50:38 -04:00
|
|
|
write(',')
|
|
|
|
write(endchar)
|
|
|
|
return
|
|
|
|
|
|
|
|
write(rep)
|
1997-04-15 21:49:59 -03:00
|
|
|
|
2002-07-08 09:28:06 -03:00
|
|
|
def _repr(self, object, context, level):
|
2002-04-02 01:08:35 -04:00
|
|
|
repr, readable, recursive = self.format(object, context.copy(),
|
2002-07-08 09:28:06 -03:00
|
|
|
self._depth, level)
|
1998-03-26 17:13:24 -04:00
|
|
|
if not readable:
|
2002-07-08 09:28:06 -03:00
|
|
|
self._readable = False
|
2001-05-14 04:05:58 -03:00
|
|
|
if recursive:
|
2002-07-08 09:28:06 -03:00
|
|
|
self._recursive = True
|
1998-03-26 17:13:24 -04:00
|
|
|
return repr
|
1997-04-15 21:49:59 -03:00
|
|
|
|
2002-04-02 01:08:35 -04:00
|
|
|
def format(self, object, context, maxlevels, level):
|
|
|
|
"""Format object for a specific context, returning a string
|
|
|
|
and flags indicating whether the representation is 'readable'
|
|
|
|
and whether the object represents a recursive construct.
|
|
|
|
"""
|
|
|
|
return _safe_repr(object, context, maxlevels, level)
|
|
|
|
|
|
|
|
|
2001-05-14 04:05:58 -03:00
|
|
|
# Return triple (repr_string, isreadable, isrecursive).
|
1997-04-15 21:49:59 -03:00
|
|
|
|
2001-11-01 13:50:38 -04:00
|
|
|
def _safe_repr(object, context, maxlevels, level):
|
|
|
|
typ = _type(object)
|
2003-06-07 17:47:37 -03:00
|
|
|
if typ is str:
|
2002-12-31 03:14:18 -04:00
|
|
|
if 'locale' not in _sys.modules:
|
2004-02-12 13:35:32 -04:00
|
|
|
return repr(object), True, False
|
2001-09-04 16:43:26 -03:00
|
|
|
if "'" in object and '"' not in object:
|
|
|
|
closure = '"'
|
|
|
|
quotes = {'"': '\\"'}
|
|
|
|
else:
|
|
|
|
closure = "'"
|
|
|
|
quotes = {"'": "\\'"}
|
2001-11-01 13:50:38 -04:00
|
|
|
qget = quotes.get
|
2002-12-31 03:14:18 -04:00
|
|
|
sio = _StringIO()
|
2001-11-01 13:50:38 -04:00
|
|
|
write = sio.write
|
2001-09-04 16:43:26 -03:00
|
|
|
for char in object:
|
|
|
|
if char.isalpha():
|
2001-11-01 13:50:38 -04:00
|
|
|
write(char)
|
2001-09-04 16:43:26 -03:00
|
|
|
else:
|
2004-02-12 13:35:32 -04:00
|
|
|
write(qget(char, repr(char)[1:-1]))
|
2002-04-07 03:36:23 -03:00
|
|
|
return ("%s%s%s" % (closure, sio.getvalue(), closure)), True, False
|
2001-11-01 13:50:38 -04:00
|
|
|
|
2004-11-15 09:51:41 -04:00
|
|
|
r = getattr(typ, "__repr__", None)
|
2003-12-03 16:15:28 -04:00
|
|
|
if issubclass(typ, dict) and r is dict.__repr__:
|
2001-11-01 13:50:38 -04:00
|
|
|
if not object:
|
2002-04-07 03:36:23 -03:00
|
|
|
return "{}", True, False
|
2001-11-01 13:50:38 -04:00
|
|
|
objid = _id(object)
|
|
|
|
if maxlevels and level > maxlevels:
|
2002-04-07 03:36:23 -03:00
|
|
|
return "{...}", False, objid in context
|
2001-11-01 13:50:38 -04:00
|
|
|
if objid in context:
|
2002-04-07 03:36:23 -03:00
|
|
|
return _recursion(object), False, True
|
2001-11-01 13:50:38 -04:00
|
|
|
context[objid] = 1
|
2002-04-07 03:36:23 -03:00
|
|
|
readable = True
|
|
|
|
recursive = False
|
2001-05-14 15:39:41 -03:00
|
|
|
components = []
|
2001-11-01 13:50:38 -04:00
|
|
|
append = components.append
|
|
|
|
level += 1
|
|
|
|
saferepr = _safe_repr
|
2006-08-23 21:41:19 -03:00
|
|
|
items = object.items()
|
|
|
|
try:
|
|
|
|
items = sorted(items)
|
|
|
|
except TypeError:
|
2007-05-15 15:46:22 -03:00
|
|
|
def sortkey(item):
|
|
|
|
key, value = item
|
|
|
|
return str(type(key)), key, value
|
|
|
|
items = sorted(items, key=sortkey)
|
2006-08-23 21:41:19 -03:00
|
|
|
for k, v in items:
|
2001-11-01 13:50:38 -04:00
|
|
|
krepr, kreadable, krecur = saferepr(k, context, maxlevels, level)
|
|
|
|
vrepr, vreadable, vrecur = saferepr(v, context, maxlevels, level)
|
|
|
|
append("%s: %s" % (krepr, vrepr))
|
1998-03-26 17:13:24 -04:00
|
|
|
readable = readable and kreadable and vreadable
|
2001-11-01 13:50:38 -04:00
|
|
|
if krecur or vrecur:
|
2002-04-07 03:36:23 -03:00
|
|
|
recursive = True
|
2001-11-01 13:50:38 -04:00
|
|
|
del context[objid]
|
|
|
|
return "{%s}" % _commajoin(components), readable, recursive
|
|
|
|
|
2003-12-03 16:15:28 -04:00
|
|
|
if (issubclass(typ, list) and r is list.__repr__) or \
|
|
|
|
(issubclass(typ, tuple) and r is tuple.__repr__):
|
|
|
|
if issubclass(typ, list):
|
2001-11-01 13:50:38 -04:00
|
|
|
if not object:
|
2002-04-07 03:36:23 -03:00
|
|
|
return "[]", True, False
|
2001-11-01 13:50:38 -04:00
|
|
|
format = "[%s]"
|
|
|
|
elif _len(object) == 1:
|
|
|
|
format = "(%s,)"
|
|
|
|
else:
|
|
|
|
if not object:
|
2002-04-07 03:36:23 -03:00
|
|
|
return "()", True, False
|
2001-11-01 13:50:38 -04:00
|
|
|
format = "(%s)"
|
|
|
|
objid = _id(object)
|
|
|
|
if maxlevels and level > maxlevels:
|
2002-04-07 03:36:23 -03:00
|
|
|
return format % "...", False, objid in context
|
2001-11-01 13:50:38 -04:00
|
|
|
if objid in context:
|
2002-04-07 03:36:23 -03:00
|
|
|
return _recursion(object), False, True
|
2001-11-01 13:50:38 -04:00
|
|
|
context[objid] = 1
|
2002-04-07 03:36:23 -03:00
|
|
|
readable = True
|
|
|
|
recursive = False
|
2001-05-14 15:39:41 -03:00
|
|
|
components = []
|
2001-11-01 13:50:38 -04:00
|
|
|
append = components.append
|
|
|
|
level += 1
|
|
|
|
for o in object:
|
|
|
|
orepr, oreadable, orecur = _safe_repr(o, context, maxlevels, level)
|
|
|
|
append(orepr)
|
|
|
|
if not oreadable:
|
2002-04-07 03:36:23 -03:00
|
|
|
readable = False
|
2001-11-01 13:50:38 -04:00
|
|
|
if orecur:
|
2002-04-07 03:36:23 -03:00
|
|
|
recursive = True
|
2001-11-01 13:50:38 -04:00
|
|
|
del context[objid]
|
|
|
|
return format % _commajoin(components), readable, recursive
|
2001-11-13 17:51:26 -04:00
|
|
|
|
2004-02-12 13:35:32 -04:00
|
|
|
rep = repr(object)
|
2002-04-07 03:36:23 -03:00
|
|
|
return rep, (rep and not rep.startswith('<')), False
|
2001-11-01 13:50:38 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _recursion(object):
|
|
|
|
return ("<Recursion on %s with id=%s>"
|
|
|
|
% (_type(object).__name__, _id(object)))
|
|
|
|
|
|
|
|
|
|
|
|
def _perfcheck(object=None):
|
|
|
|
import time
|
|
|
|
if object is None:
|
|
|
|
object = [("string", (1, 2), [3, 4], {5: 6, 7: 8})] * 100000
|
|
|
|
p = PrettyPrinter()
|
|
|
|
t1 = time.time()
|
|
|
|
_safe_repr(object, {}, None, 0)
|
|
|
|
t2 = time.time()
|
|
|
|
p.pformat(object)
|
|
|
|
t3 = time.time()
|
2007-02-09 01:37:30 -04:00
|
|
|
print("_safe_repr:", t2 - t1)
|
|
|
|
print("pformat:", t3 - t2)
|
2001-11-01 13:50:38 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
_perfcheck()
|