blob: 0ad08c6365edd65b6ec9d01a8f0f300c449a267e [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`repr` --- Alternate :func:`repr` implementation
3=====================================================
4
5.. module:: repr
6 :synopsis: Alternate repr() implementation with size limits.
7.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8
9
10The :mod:`repr` module provides a means for producing object representations
11with limits on the size of the resulting strings. This is used in the Python
12debugger and may be useful in other contexts as well.
13
14This module provides a class, an instance, and a function:
15
16
17.. class:: Repr()
18
19 Class which provides formatting services useful in implementing functions
20 similar to the built-in :func:`repr`; size limits for different object types
21 are added to avoid the generation of representations which are excessively long.
22
23
24.. data:: aRepr
25
26 This is an instance of :class:`Repr` which is used to provide the :func:`repr`
27 function described below. Changing the attributes of this object will affect
28 the size limits used by :func:`repr` and the Python debugger.
29
30
31.. function:: repr(obj)
32
33 This is the :meth:`repr` method of ``aRepr``. It returns a string similar to
34 that returned by the built-in function of the same name, but with limits on
35 most sizes.
36
37
38.. _repr-objects:
39
40Repr Objects
41------------
42
43:class:`Repr` instances provide several members which can be used to provide
44size limits for the representations of different object types, and methods
45which format specific object types.
46
47
48.. attribute:: Repr.maxlevel
49
50 Depth limit on the creation of recursive representations. The default is ``6``.
51
52
53.. attribute:: Repr.maxdict
54 Repr.maxlist
55 Repr.maxtuple
56 Repr.maxset
57 Repr.maxfrozenset
58 Repr.maxdeque
59 Repr.maxarray
60
61 Limits on the number of entries represented for the named object type. The
62 default is ``4`` for :attr:`maxdict`, ``5`` for :attr:`maxarray`, and ``6`` for
63 the others.
64
Georg Brandl116aa622007-08-15 14:28:22 +000065
66.. attribute:: Repr.maxlong
67
68 Maximum number of characters in the representation for a long integer. Digits
69 are dropped from the middle. The default is ``40``.
70
71
72.. attribute:: Repr.maxstring
73
74 Limit on the number of characters in the representation of the string. Note
75 that the "normal" representation of the string is used as the character source:
76 if escape sequences are needed in the representation, these may be mangled when
77 the representation is shortened. The default is ``30``.
78
79
80.. attribute:: Repr.maxother
81
82 This limit is used to control the size of object types for which no specific
83 formatting method is available on the :class:`Repr` object. It is applied in a
84 similar manner as :attr:`maxstring`. The default is ``20``.
85
86
87.. method:: Repr.repr(obj)
88
89 The equivalent to the built-in :func:`repr` that uses the formatting imposed by
90 the instance.
91
92
93.. method:: Repr.repr1(obj, level)
94
95 Recursive implementation used by :meth:`repr`. This uses the type of *obj* to
96 determine which formatting method to call, passing it *obj* and *level*. The
97 type-specific methods should call :meth:`repr1` to perform recursive formatting,
98 with ``level - 1`` for the value of *level* in the recursive call.
99
100
101.. method:: Repr.repr_TYPE(obj, level)
102 :noindex:
103
104 Formatting methods for specific types are implemented as methods with a name
105 based on the type name. In the method name, **TYPE** is replaced by
106 ``string.join(string.split(type(obj).__name__, '_'))``. Dispatch to these
107 methods is handled by :meth:`repr1`. Type-specific methods which need to
108 recursively format a value should call ``self.repr1(subobj, level - 1)``.
109
110
111.. _subclassing-reprs:
112
113Subclassing Repr Objects
114------------------------
115
116The use of dynamic dispatching by :meth:`Repr.repr1` allows subclasses of
117:class:`Repr` to add support for additional built-in object types or to modify
118the handling of types already supported. This example shows how special support
119for file objects could be added::
120
121 import repr
122 import sys
123
124 class MyRepr(repr.Repr):
125 def repr_file(self, obj, level):
126 if obj.name in ['<stdin>', '<stdout>', '<stderr>']:
127 return obj.name
128 else:
129 return `obj`
130
131 aRepr = MyRepr()
Georg Brandl6911e3c2007-09-04 07:15:32 +0000132 print(aRepr.repr(sys.stdin)) # prints '<stdin>'
Georg Brandl116aa622007-08-15 14:28:22 +0000133