blob: 0281bb761f77fbb503d2e8f1e0a008d9f1df5845 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`gc` --- Garbage Collector interface
2=========================================
3
4.. module:: gc
5 :synopsis: Interface to the cycle-detecting garbage collector.
6.. moduleauthor:: Neil Schemenauer <nas@arctrix.com>
7.. sectionauthor:: Neil Schemenauer <nas@arctrix.com>
8
9
10This module provides an interface to the optional garbage collector. It
11provides the ability to disable the collector, tune the collection frequency,
12and set debugging options. It also provides access to unreachable objects that
13the collector found but cannot free. Since the collector supplements the
14reference counting already used in Python, you can disable the collector if you
15are sure your program does not create reference cycles. Automatic collection
16can be disabled by calling ``gc.disable()``. To debug a leaking program call
17``gc.set_debug(gc.DEBUG_LEAK)``. Notice that this includes
18``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
19gc.garbage for inspection.
20
21The :mod:`gc` module provides the following functions:
22
23
24.. function:: enable()
25
26 Enable automatic garbage collection.
27
28
29.. function:: disable()
30
31 Disable automatic garbage collection.
32
33
34.. function:: isenabled()
35
36 Returns true if automatic collection is enabled.
37
38
Georg Brandl036490d2009-05-17 13:00:36 +000039.. function:: collect(generations=2)
Georg Brandl116aa622007-08-15 14:28:22 +000040
41 With no arguments, run a full collection. The optional argument *generation*
42 may be an integer specifying which generation to collect (from 0 to 2). A
43 :exc:`ValueError` is raised if the generation number is invalid. The number of
44 unreachable objects found is returned.
45
Georg Brandlc4a55fc2010-02-06 18:46:57 +000046 The free lists maintained for a number of built-in types are cleared
Georg Brandl2ee470f2008-07-16 12:55:28 +000047 whenever a full collection or collection of the highest generation (2)
48 is run. Not all items in some free lists may be freed due to the
49 particular implementation, in particular :class:`float`.
50
Georg Brandl116aa622007-08-15 14:28:22 +000051
52.. function:: set_debug(flags)
53
54 Set the garbage collection debugging flags. Debugging information will be
55 written to ``sys.stderr``. See below for a list of debugging flags which can be
56 combined using bit operations to control debugging.
57
58
59.. function:: get_debug()
60
61 Return the debugging flags currently set.
62
63
64.. function:: get_objects()
65
66 Returns a list of all objects tracked by the collector, excluding the list
67 returned.
68
Georg Brandl116aa622007-08-15 14:28:22 +000069
70.. function:: set_threshold(threshold0[, threshold1[, threshold2]])
71
72 Set the garbage collection thresholds (the collection frequency). Setting
73 *threshold0* to zero disables collection.
74
75 The GC classifies objects into three generations depending on how many
76 collection sweeps they have survived. New objects are placed in the youngest
77 generation (generation ``0``). If an object survives a collection it is moved
78 into the next older generation. Since generation ``2`` is the oldest
79 generation, objects in that generation remain there after a collection. In
80 order to decide when to run, the collector keeps track of the number object
81 allocations and deallocations since the last collection. When the number of
82 allocations minus the number of deallocations exceeds *threshold0*, collection
83 starts. Initially only generation ``0`` is examined. If generation ``0`` has
84 been examined more than *threshold1* times since generation ``1`` has been
85 examined, then generation ``1`` is examined as well. Similarly, *threshold2*
86 controls the number of collections of generation ``1`` before collecting
87 generation ``2``.
88
89
90.. function:: get_count()
91
92 Return the current collection counts as a tuple of ``(count0, count1,
93 count2)``.
94
Georg Brandl116aa622007-08-15 14:28:22 +000095
96.. function:: get_threshold()
97
98 Return the current collection thresholds as a tuple of ``(threshold0,
99 threshold1, threshold2)``.
100
101
102.. function:: get_referrers(*objs)
103
104 Return the list of objects that directly refer to any of objs. This function
105 will only locate those containers which support garbage collection; extension
106 types which do refer to other objects but do not support garbage collection will
107 not be found.
108
109 Note that objects which have already been dereferenced, but which live in cycles
110 and have not yet been collected by the garbage collector can be listed among the
111 resulting referrers. To get only currently live objects, call :func:`collect`
112 before calling :func:`get_referrers`.
113
114 Care must be taken when using objects returned by :func:`get_referrers` because
115 some of them could still be under construction and hence in a temporarily
116 invalid state. Avoid using :func:`get_referrers` for any purpose other than
117 debugging.
118
Georg Brandl116aa622007-08-15 14:28:22 +0000119
120.. function:: get_referents(*objs)
121
122 Return a list of objects directly referred to by any of the arguments. The
123 referents returned are those objects visited by the arguments' C-level
124 :attr:`tp_traverse` methods (if any), and may not be all objects actually
125 directly reachable. :attr:`tp_traverse` methods are supported only by objects
126 that support garbage collection, and are only required to visit objects that may
127 be involved in a cycle. So, for example, if an integer is directly reachable
128 from an argument, that integer object may or may not appear in the result list.
129
Georg Brandl116aa622007-08-15 14:28:22 +0000130
Antoine Pitrou3a652b12009-03-23 18:52:06 +0000131.. function:: is_tracked(obj)
132
133 Returns True if the object is currently tracked by the garbage collector,
134 False otherwise. As a general rule, instances of atomic types aren't
135 tracked and instances of non-atomic types (containers, user-defined
136 objects...) are. However, some type-specific optimizations can be present
137 in order to suppress the garbage collector footprint of simple instances
138 (e.g. dicts containing only atomic keys and values)::
139
140 >>> gc.is_tracked(0)
141 False
142 >>> gc.is_tracked("a")
143 False
144 >>> gc.is_tracked([])
145 True
146 >>> gc.is_tracked({})
147 False
148 >>> gc.is_tracked({"a": 1})
149 False
150 >>> gc.is_tracked({"a": []})
151 True
152
Georg Brandl705d9d52009-05-05 09:29:50 +0000153 .. versionadded:: 3.1
Antoine Pitrou3a652b12009-03-23 18:52:06 +0000154
155
Georg Brandl116aa622007-08-15 14:28:22 +0000156The following variable is provided for read-only access (you can mutate its
157value but should not rebind it):
158
Georg Brandl116aa622007-08-15 14:28:22 +0000159.. data:: garbage
160
161 A list of objects which the collector found to be unreachable but could not be
162 freed (uncollectable objects). By default, this list contains only objects with
Amaury Forgeot d'Arcad8dcd52007-12-10 23:58:35 +0000163 :meth:`__del__` methods. Objects that have :meth:`__del__` methods and are
Georg Brandl116aa622007-08-15 14:28:22 +0000164 part of a reference cycle cause the entire reference cycle to be uncollectable,
165 including objects not necessarily in the cycle but reachable only from it.
166 Python doesn't collect such cycles automatically because, in general, it isn't
167 possible for Python to guess a safe order in which to run the :meth:`__del__`
168 methods. If you know a safe order, you can force the issue by examining the
169 *garbage* list, and explicitly breaking cycles due to your objects within the
170 list. Note that these objects are kept alive even so by virtue of being in the
171 *garbage* list, so they should be removed from *garbage* too. For example,
172 after breaking cycles, do ``del gc.garbage[:]`` to empty the list. It's
173 generally better to avoid the issue by not creating cycles containing objects
174 with :meth:`__del__` methods, and *garbage* can be examined in that case to
175 verify that no such cycles are being created.
176
Georg Brandl08be72d2010-10-24 15:11:22 +0000177 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added
178 to this list rather than freed.
Georg Brandl116aa622007-08-15 14:28:22 +0000179
Antoine Pitrou696e0352010-08-08 22:18:46 +0000180 .. versionchanged:: 3.2
Georg Brandl08be72d2010-10-24 15:11:22 +0000181 If this list is non-empty at interpreter shutdown, a
182 :exc:`ResourceWarning` is emitted, which is silent by default. If
183 :const:`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects
184 are printed.
Antoine Pitrou696e0352010-08-08 22:18:46 +0000185
Antoine Pitrou696e0352010-08-08 22:18:46 +0000186
Georg Brandl116aa622007-08-15 14:28:22 +0000187The following constants are provided for use with :func:`set_debug`:
188
189
190.. data:: DEBUG_STATS
191
192 Print statistics during collection. This information can be useful when tuning
193 the collection frequency.
194
195
196.. data:: DEBUG_COLLECTABLE
197
198 Print information on collectable objects found.
199
200
201.. data:: DEBUG_UNCOLLECTABLE
202
203 Print information of uncollectable objects found (objects which are not
Georg Brandl08be72d2010-10-24 15:11:22 +0000204 reachable but cannot be freed by the collector). These objects will be added
205 to the ``garbage`` list.
Georg Brandl116aa622007-08-15 14:28:22 +0000206
Antoine Pitrou696e0352010-08-08 22:18:46 +0000207 .. versionchanged:: 3.2
208 Also print the contents of the :data:`garbage` list at interpreter
Georg Brandl08be72d2010-10-24 15:11:22 +0000209 shutdown, if it isn't empty.
Georg Brandl116aa622007-08-15 14:28:22 +0000210
Georg Brandl116aa622007-08-15 14:28:22 +0000211.. data:: DEBUG_SAVEALL
212
213 When set, all unreachable objects found will be appended to *garbage* rather
214 than being freed. This can be useful for debugging a leaking program.
215
216
217.. data:: DEBUG_LEAK
218
219 The debugging flags necessary for the collector to print information about a
220 leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE |
Amaury Forgeot d'Arcad8dcd52007-12-10 23:58:35 +0000221 DEBUG_SAVEALL``).