| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  | #  Author:      Fred L. Drake, Jr. | 
					
						
							| 
									
										
										
										
											2001-10-09 20:53:48 +00:00
										 |  |  | #               fdrake@acm.org | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00: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 12:04:32 +00:00
										 |  |  | #  tuples with fairly non-descriptive content.  This is modeled very much | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00: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 16:59:30 +00:00
										 |  |  | Classes | 
					
						
							|  |  |  | ------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PrettyPrinter() | 
					
						
							|  |  |  |     Handle pretty-printing operations onto a stream using a configured | 
					
						
							|  |  |  |     set of formatting parameters. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | Functions | 
					
						
							|  |  |  | --------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pformat() | 
					
						
							|  |  |  |     Format a Python object into a pretty-printed representation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pprint() | 
					
						
							| 
									
										
										
										
											2004-05-14 16:31:56 +00:00
										 |  |  |     Pretty-print a Python object to a stream [default is sys.stdout]. | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | saferepr() | 
					
						
							|  |  |  |     Generate a 'standard' repr()-like value, but protect against recursive | 
					
						
							|  |  |  |     data structures. | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  | import sys as _sys | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  | from cStringIO import StringIO as _StringIO | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-12 02:00:42 +00:00
										 |  |  | __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr", | 
					
						
							|  |  |  |            "PrettyPrinter"] | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  | # cache these for faster access: | 
					
						
							|  |  |  | _commajoin = ", ".join | 
					
						
							|  |  |  | _id = id | 
					
						
							|  |  |  | _len = len | 
					
						
							|  |  |  | _type = type | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-03 20:26:05 +00:00
										 |  |  | def pprint(object, stream=None, indent=1, width=80, depth=None): | 
					
						
							| 
									
										
										
										
											2004-05-14 16:31:56 +00:00
										 |  |  |     """Pretty-print a Python object to a stream [default is sys.stdout].""" | 
					
						
							| 
									
										
										
										
											2003-12-03 20:26:05 +00:00
										 |  |  |     printer = PrettyPrinter( | 
					
						
							|  |  |  |         stream=stream, indent=indent, width=width, depth=depth) | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  |     printer.pprint(object) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-03 20:26:05 +00:00
										 |  |  | def pformat(object, indent=1, width=80, depth=None): | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  |     """Format a Python object into a pretty-printed representation.""" | 
					
						
							| 
									
										
										
										
											2003-12-03 20:26:05 +00:00
										 |  |  |     return PrettyPrinter(indent=indent, width=width, depth=depth).pformat(object) | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-14 07:05:58 +00:00
										 |  |  | def saferepr(object): | 
					
						
							|  |  |  |     """Version of repr() which can handle recursive data structures.""" | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |     return _safe_repr(object, {}, None, 0)[0] | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-07-18 20:42:39 +00:00
										 |  |  | def isreadable(object): | 
					
						
							|  |  |  |     """Determine if saferepr(object) is readable by eval().""" | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |     return _safe_repr(object, {}, None, 0)[1] | 
					
						
							| 
									
										
										
										
											1997-07-18 20:42:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def isrecursive(object): | 
					
						
							|  |  |  |     """Determine if object requires a recursive representation.""" | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |     return _safe_repr(object, {}, None, 0)[2] | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PrettyPrinter: | 
					
						
							|  |  |  |     def __init__(self, indent=1, width=80, depth=None, stream=None): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00: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 20:15:28 +00:00
										 |  |  |         assert indent >= 0, "indent must be >= 0" | 
					
						
							| 
									
										
										
										
											2001-05-14 07:05:58 +00:00
										 |  |  |         assert depth is None or depth > 0, "depth must be > 0" | 
					
						
							| 
									
										
										
										
											2003-12-03 20:15:28 +00:00
										 |  |  |         assert width, "width must be != 0" | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |         self._depth = depth | 
					
						
							|  |  |  |         self._indent_per_level = indent | 
					
						
							|  |  |  |         self._width = width | 
					
						
							| 
									
										
										
										
											2002-06-01 16:07:16 +00:00
										 |  |  |         if stream is not None: | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |             self._stream = stream | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  |             self._stream = _sys.stdout | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def pprint(self, object): | 
					
						
							| 
									
										
										
										
											2005-11-11 18:18:51 +00:00
										 |  |  |         self._format(object, self._stream, 0, 0, {}, 0) | 
					
						
							|  |  |  |         self._stream.write("\n") | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def pformat(self, object): | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  |         sio = _StringIO() | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |         self._format(object, sio, 0, 0, {}, 0) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return sio.getvalue() | 
					
						
							| 
									
										
										
										
											1997-04-16 16:59:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-07-18 20:42:39 +00:00
										 |  |  |     def isrecursive(self, object): | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  |         return self.format(object, {}, 0, 0)[2] | 
					
						
							| 
									
										
										
										
											1997-07-18 20:42:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def isreadable(self, object): | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  |         s, readable, recursive = self.format(object, {}, 0, 0) | 
					
						
							| 
									
										
										
										
											2002-04-02 05:08:35 +00:00
										 |  |  |         return readable and not recursive | 
					
						
							| 
									
										
										
										
											1997-07-18 20:42:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |     def _format(self, object, stream, indent, allowance, context, level): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         level = level + 1 | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         objid = _id(object) | 
					
						
							|  |  |  |         if objid in context: | 
					
						
							|  |  |  |             stream.write(_recursion(object)) | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |             self._recursive = True | 
					
						
							|  |  |  |             self._readable = False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |         rep = self._repr(object, context, level - 1) | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         typ = _type(object) | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |         sepLines = _len(rep) > (self._width - 1 - indent - allowance) | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         write = stream.write | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:13:29 +00:00
										 |  |  |         r = getattr(typ, "__repr__", None) | 
					
						
							|  |  |  |         if issubclass(typ, dict) and r is dict.__repr__: | 
					
						
							|  |  |  |             write('{') | 
					
						
							|  |  |  |             if self._indent_per_level > 1: | 
					
						
							|  |  |  |                 write((self._indent_per_level - 1) * ' ') | 
					
						
							|  |  |  |             length = _len(object) | 
					
						
							|  |  |  |             if length: | 
					
						
							|  |  |  |                 context[objid] = 1 | 
					
						
							|  |  |  |                 indent = indent + self._indent_per_level | 
					
						
							|  |  |  |                 items  = object.items() | 
					
						
							|  |  |  |                 items.sort() | 
					
						
							|  |  |  |                 key, ent = items[0] | 
					
						
							|  |  |  |                 rep = self._repr(key, context, level) | 
					
						
							|  |  |  |                 write(rep) | 
					
						
							|  |  |  |                 write(': ') | 
					
						
							|  |  |  |                 self._format(ent, stream, indent + _len(rep) + 2, | 
					
						
							|  |  |  |                               allowance + 1, context, level) | 
					
						
							|  |  |  |                 if length > 1: | 
					
						
							|  |  |  |                     for key, ent in items[1:]: | 
					
						
							|  |  |  |                         rep = self._repr(key, context, level) | 
					
						
							|  |  |  |                         if sepLines: | 
					
						
							| 
									
										
										
										
											2001-11-28 05:49:39 +00:00
										 |  |  |                             write(',\n%s%s: ' % (' '*indent, rep)) | 
					
						
							| 
									
										
										
										
											2008-01-20 11:13:29 +00:00
										 |  |  |                         else: | 
					
						
							|  |  |  |                             write(', %s: ' % rep) | 
					
						
							|  |  |  |                         self._format(ent, stream, indent + _len(rep) + 2, | 
					
						
							|  |  |  |                                       allowance + 1, context, level) | 
					
						
							|  |  |  |                 indent = indent - self._indent_per_level | 
					
						
							|  |  |  |                 del context[objid] | 
					
						
							|  |  |  |             write('}') | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-23 00:04:40 +00: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__) | 
					
						
							|  |  |  |            ): | 
					
						
							| 
									
										
										
										
											2008-01-20 11:13:29 +00:00
										 |  |  |             if issubclass(typ, list): | 
					
						
							|  |  |  |                 write('[') | 
					
						
							|  |  |  |                 endchar = ']' | 
					
						
							| 
									
										
										
										
											2008-01-23 00:04:40 +00:00
										 |  |  |             elif issubclass(typ, set): | 
					
						
							|  |  |  |                 write('set([') | 
					
						
							|  |  |  |                 endchar = '])' | 
					
						
							|  |  |  |                 object = sorted(object) | 
					
						
							|  |  |  |                 indent += 4 | 
					
						
							|  |  |  |             elif issubclass(typ, frozenset): | 
					
						
							|  |  |  |                 write('frozenset([') | 
					
						
							|  |  |  |                 endchar = '])' | 
					
						
							|  |  |  |                 object = sorted(object) | 
					
						
							|  |  |  |                 indent += 9 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:13:29 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 write('(') | 
					
						
							|  |  |  |                 endchar = ')' | 
					
						
							|  |  |  |             if self._indent_per_level > 1: | 
					
						
							|  |  |  |                 write((self._indent_per_level - 1) * ' ') | 
					
						
							|  |  |  |             length = _len(object) | 
					
						
							|  |  |  |             if length: | 
					
						
							|  |  |  |                 context[objid] = 1 | 
					
						
							|  |  |  |                 indent = indent + self._indent_per_level | 
					
						
							|  |  |  |                 self._format(object[0], stream, indent, allowance + 1, | 
					
						
							|  |  |  |                              context, level) | 
					
						
							|  |  |  |                 if length > 1: | 
					
						
							|  |  |  |                     for ent in object[1:]: | 
					
						
							|  |  |  |                         if sepLines: | 
					
						
							|  |  |  |                             write(',\n' + ' '*indent) | 
					
						
							|  |  |  |                         else: | 
					
						
							|  |  |  |                             write(', ') | 
					
						
							|  |  |  |                         self._format(ent, stream, indent, | 
					
						
							|  |  |  |                                       allowance + 1, context, level) | 
					
						
							|  |  |  |                 indent = indent - self._indent_per_level | 
					
						
							|  |  |  |                 del context[objid] | 
					
						
							|  |  |  |             if issubclass(typ, tuple) and length == 1: | 
					
						
							|  |  |  |                 write(',') | 
					
						
							|  |  |  |             write(endchar) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         write(rep) | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-20 11:13:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |     def _repr(self, object, context, level): | 
					
						
							| 
									
										
										
										
											2002-04-02 05:08:35 +00:00
										 |  |  |         repr, readable, recursive = self.format(object, context.copy(), | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |                                                 self._depth, level) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if not readable: | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |             self._readable = False | 
					
						
							| 
									
										
										
										
											2001-05-14 07:05:58 +00:00
										 |  |  |         if recursive: | 
					
						
							| 
									
										
										
										
											2002-07-08 12:28:06 +00:00
										 |  |  |             self._recursive = True | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return repr | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-02 05:08:35 +00: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 07:05:58 +00:00
										 |  |  | # Return triple (repr_string, isreadable, isrecursive). | 
					
						
							| 
									
										
										
										
											1997-04-16 00:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  | def _safe_repr(object, context, maxlevels, level): | 
					
						
							|  |  |  |     typ = _type(object) | 
					
						
							| 
									
										
										
										
											2003-06-07 20:47:37 +00:00
										 |  |  |     if typ is str: | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  |         if 'locale' not in _sys.modules: | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |             return repr(object), True, False | 
					
						
							| 
									
										
										
										
											2001-09-04 19:43:26 +00:00
										 |  |  |         if "'" in object and '"' not in object: | 
					
						
							|  |  |  |             closure = '"' | 
					
						
							|  |  |  |             quotes = {'"': '\\"'} | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             closure = "'" | 
					
						
							|  |  |  |             quotes = {"'": "\\'"} | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         qget = quotes.get | 
					
						
							| 
									
										
										
										
											2002-12-31 07:14:18 +00:00
										 |  |  |         sio = _StringIO() | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         write = sio.write | 
					
						
							| 
									
										
										
										
											2001-09-04 19:43:26 +00:00
										 |  |  |         for char in object: | 
					
						
							|  |  |  |             if char.isalpha(): | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |                 write(char) | 
					
						
							| 
									
										
										
										
											2001-09-04 19:43:26 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                 write(qget(char, repr(char)[1:-1])) | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |         return ("%s%s%s" % (closure, sio.getvalue(), closure)), True, False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-15 13:51:41 +00:00
										 |  |  |     r = getattr(typ, "__repr__", None) | 
					
						
							| 
									
										
										
										
											2003-12-03 20:15:28 +00:00
										 |  |  |     if issubclass(typ, dict) and r is dict.__repr__: | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         if not object: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             return "{}", True, False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         objid = _id(object) | 
					
						
							|  |  |  |         if maxlevels and level > maxlevels: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             return "{...}", False, objid in context | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         if objid in context: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             return _recursion(object), False, True | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         context[objid] = 1 | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |         readable = True | 
					
						
							|  |  |  |         recursive = False | 
					
						
							| 
									
										
										
										
											2001-05-14 18:39:41 +00:00
										 |  |  |         components = [] | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         append = components.append | 
					
						
							|  |  |  |         level += 1 | 
					
						
							|  |  |  |         saferepr = _safe_repr | 
					
						
							| 
									
										
										
										
											2006-06-02 23:22:51 +00:00
										 |  |  |         for k, v in sorted(object.items()): | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00: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 21:13:24 +00:00
										 |  |  |             readable = readable and kreadable and vreadable | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |             if krecur or vrecur: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |                 recursive = True | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         del context[objid] | 
					
						
							|  |  |  |         return "{%s}" % _commajoin(components), readable, recursive | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-03 20:15:28 +00: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 17:50:38 +00:00
										 |  |  |             if not object: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |                 return "[]", True, False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |             format = "[%s]" | 
					
						
							|  |  |  |         elif _len(object) == 1: | 
					
						
							|  |  |  |             format = "(%s,)" | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if not object: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |                 return "()", True, False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |             format = "(%s)" | 
					
						
							|  |  |  |         objid = _id(object) | 
					
						
							|  |  |  |         if maxlevels and level > maxlevels: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             return format % "...", False, objid in context | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         if objid in context: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             return _recursion(object), False, True | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         context[objid] = 1 | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |         readable = True | 
					
						
							|  |  |  |         recursive = False | 
					
						
							| 
									
										
										
										
											2001-05-14 18:39:41 +00:00
										 |  |  |         components = [] | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00: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 06:36:23 +00:00
										 |  |  |                 readable = False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |             if orecur: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |                 recursive = True | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00:00
										 |  |  |         del context[objid] | 
					
						
							|  |  |  |         return format % _commajoin(components), readable, recursive | 
					
						
							| 
									
										
										
										
											2001-11-13 21:51:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |     rep = repr(object) | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |     return rep, (rep and not rep.startswith('<')), False | 
					
						
							| 
									
										
										
										
											2001-11-01 17:50:38 +00: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() | 
					
						
							|  |  |  |     print "_safe_repr:", t2 - t1 | 
					
						
							|  |  |  |     print "pformat:", t3 - t2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     _perfcheck() |