blob: c540b1164577a6d68a1eafb51d7690f2417937e3 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`inspect` --- Inspect live objects
2=======================================
3
4.. module:: inspect
5 :synopsis: Extract information and source code from live objects.
6.. moduleauthor:: Ka-Ping Yee <ping@lfw.org>
7.. sectionauthor:: Ka-Ping Yee <ping@lfw.org>
8
Raymond Hettinger469271d2011-01-27 20:38:46 +00009**Source code:** :source:`Lib/inspect.py`
10
11--------------
Georg Brandl116aa622007-08-15 14:28:22 +000012
Georg Brandl116aa622007-08-15 14:28:22 +000013The :mod:`inspect` module provides several useful functions to help get
14information about live objects such as modules, classes, methods, functions,
15tracebacks, frame objects, and code objects. For example, it can help you
16examine the contents of a class, retrieve the source code of a method, extract
17and format the argument list for a function, or get all the information you need
18to display a detailed traceback.
19
20There are four main kinds of services provided by this module: type checking,
21getting source code, inspecting classes and functions, and examining the
22interpreter stack.
23
24
25.. _inspect-types:
26
27Types and members
28-----------------
29
30The :func:`getmembers` function retrieves the members of an object such as a
Christian Heimes78644762008-03-04 23:39:23 +000031class or module. The sixteen functions whose names begin with "is" are mainly
Georg Brandl116aa622007-08-15 14:28:22 +000032provided as convenient choices for the second argument to :func:`getmembers`.
33They also help you determine when you can expect to find the following special
34attributes:
35
Georg Brandl55ac8f02007-09-01 13:51:09 +000036+-----------+-----------------+---------------------------+
37| Type | Attribute | Description |
38+===========+=================+===========================+
39| module | __doc__ | documentation string |
40+-----------+-----------------+---------------------------+
41| | __file__ | filename (missing for |
42| | | built-in modules) |
43+-----------+-----------------+---------------------------+
44| class | __doc__ | documentation string |
45+-----------+-----------------+---------------------------+
46| | __module__ | name of module in which |
47| | | this class was defined |
48+-----------+-----------------+---------------------------+
49| method | __doc__ | documentation string |
50+-----------+-----------------+---------------------------+
51| | __name__ | name with which this |
52| | | method was defined |
53+-----------+-----------------+---------------------------+
Christian Heimesff737952007-11-27 10:40:20 +000054| | __func__ | function object |
Georg Brandl55ac8f02007-09-01 13:51:09 +000055| | | containing implementation |
56| | | of method |
57+-----------+-----------------+---------------------------+
Christian Heimesff737952007-11-27 10:40:20 +000058| | __self__ | instance to which this |
Georg Brandl55ac8f02007-09-01 13:51:09 +000059| | | method is bound, or |
60| | | ``None`` |
61+-----------+-----------------+---------------------------+
62| function | __doc__ | documentation string |
63+-----------+-----------------+---------------------------+
64| | __name__ | name with which this |
65| | | function was defined |
66+-----------+-----------------+---------------------------+
67| | __code__ | code object containing |
68| | | compiled function |
Georg Brandl9afde1c2007-11-01 20:32:30 +000069| | | :term:`bytecode` |
Georg Brandl55ac8f02007-09-01 13:51:09 +000070+-----------+-----------------+---------------------------+
71| | __defaults__ | tuple of any default |
Yury Selivanovea2d66e2014-01-27 14:26:28 -050072| | | values for positional or |
73| | | keyword parameters |
74+-----------+-----------------+---------------------------+
75| | __kwdefaults__ | mapping of any default |
76| | | values for keyword-only |
77| | | parameters |
Georg Brandl55ac8f02007-09-01 13:51:09 +000078+-----------+-----------------+---------------------------+
79| | __globals__ | global namespace in which |
80| | | this function was defined |
81+-----------+-----------------+---------------------------+
82| traceback | tb_frame | frame object at this |
83| | | level |
84+-----------+-----------------+---------------------------+
85| | tb_lasti | index of last attempted |
86| | | instruction in bytecode |
87+-----------+-----------------+---------------------------+
88| | tb_lineno | current line number in |
89| | | Python source code |
90+-----------+-----------------+---------------------------+
91| | tb_next | next inner traceback |
92| | | object (called by this |
93| | | level) |
94+-----------+-----------------+---------------------------+
95| frame | f_back | next outer frame object |
96| | | (this frame's caller) |
97+-----------+-----------------+---------------------------+
Georg Brandlc4a55fc2010-02-06 18:46:57 +000098| | f_builtins | builtins namespace seen |
Georg Brandl55ac8f02007-09-01 13:51:09 +000099| | | by this frame |
100+-----------+-----------------+---------------------------+
101| | f_code | code object being |
102| | | executed in this frame |
103+-----------+-----------------+---------------------------+
Georg Brandl55ac8f02007-09-01 13:51:09 +0000104| | f_globals | global namespace seen by |
105| | | this frame |
106+-----------+-----------------+---------------------------+
107| | f_lasti | index of last attempted |
108| | | instruction in bytecode |
109+-----------+-----------------+---------------------------+
110| | f_lineno | current line number in |
111| | | Python source code |
112+-----------+-----------------+---------------------------+
113| | f_locals | local namespace seen by |
114| | | this frame |
115+-----------+-----------------+---------------------------+
116| | f_restricted | 0 or 1 if frame is in |
117| | | restricted execution mode |
118+-----------+-----------------+---------------------------+
119| | f_trace | tracing function for this |
120| | | frame, or ``None`` |
121+-----------+-----------------+---------------------------+
122| code | co_argcount | number of arguments (not |
123| | | including \* or \*\* |
124| | | args) |
125+-----------+-----------------+---------------------------+
126| | co_code | string of raw compiled |
127| | | bytecode |
128+-----------+-----------------+---------------------------+
129| | co_consts | tuple of constants used |
130| | | in the bytecode |
131+-----------+-----------------+---------------------------+
132| | co_filename | name of file in which |
133| | | this code object was |
134| | | created |
135+-----------+-----------------+---------------------------+
136| | co_firstlineno | number of first line in |
137| | | Python source code |
138+-----------+-----------------+---------------------------+
139| | co_flags | bitmap: 1=optimized ``|`` |
140| | | 2=newlocals ``|`` 4=\*arg |
141| | | ``|`` 8=\*\*arg |
142+-----------+-----------------+---------------------------+
143| | co_lnotab | encoded mapping of line |
144| | | numbers to bytecode |
145| | | indices |
146+-----------+-----------------+---------------------------+
147| | co_name | name with which this code |
148| | | object was defined |
149+-----------+-----------------+---------------------------+
150| | co_names | tuple of names of local |
151| | | variables |
152+-----------+-----------------+---------------------------+
153| | co_nlocals | number of local variables |
154+-----------+-----------------+---------------------------+
155| | co_stacksize | virtual machine stack |
156| | | space required |
157+-----------+-----------------+---------------------------+
158| | co_varnames | tuple of names of |
159| | | arguments and local |
160| | | variables |
161+-----------+-----------------+---------------------------+
162| builtin | __doc__ | documentation string |
163+-----------+-----------------+---------------------------+
164| | __name__ | original name of this |
165| | | function or method |
166+-----------+-----------------+---------------------------+
167| | __self__ | instance to which a |
168| | | method is bound, or |
169| | | ``None`` |
170+-----------+-----------------+---------------------------+
Georg Brandl116aa622007-08-15 14:28:22 +0000171
172
173.. function:: getmembers(object[, predicate])
174
175 Return all the members of an object in a list of (name, value) pairs sorted by
176 name. If the optional *predicate* argument is supplied, only members for which
177 the predicate returns a true value are included.
178
Christian Heimes7f044312008-01-06 17:05:40 +0000179 .. note::
180
Ethan Furman63c141c2013-10-18 00:27:39 -0700181 :func:`getmembers` will only return class attributes defined in the
182 metaclass when the argument is a class and those attributes have been
183 listed in the metaclass' custom :meth:`__dir__`.
Christian Heimes7f044312008-01-06 17:05:40 +0000184
Georg Brandl116aa622007-08-15 14:28:22 +0000185
186.. function:: getmoduleinfo(path)
187
Georg Brandlb30f3302011-01-06 09:23:56 +0000188 Returns a :term:`named tuple` ``ModuleInfo(name, suffix, mode, module_type)``
189 of values that describe how Python will interpret the file identified by
190 *path* if it is a module, or ``None`` if it would not be identified as a
191 module. In that tuple, *name* is the name of the module without the name of
192 any enclosing package, *suffix* is the trailing part of the file name (which
193 may not be a dot-delimited extension), *mode* is the :func:`open` mode that
194 would be used (``'r'`` or ``'rb'``), and *module_type* is an integer giving
195 the type of the module. *module_type* will have a value which can be
196 compared to the constants defined in the :mod:`imp` module; see the
197 documentation for that module for more information on module types.
Georg Brandl116aa622007-08-15 14:28:22 +0000198
Brett Cannoncb66eb02012-05-11 12:58:42 -0400199 .. deprecated:: 3.3
200 You may check the file path's suffix against the supported suffixes
201 listed in :mod:`importlib.machinery` to infer the same information.
202
Georg Brandl116aa622007-08-15 14:28:22 +0000203
204.. function:: getmodulename(path)
205
206 Return the name of the module named by the file *path*, without including the
Nick Coghlan76e07702012-07-18 23:14:57 +1000207 names of enclosing packages. The file extension is checked against all of
208 the entries in :func:`importlib.machinery.all_suffixes`. If it matches,
209 the final path component is returned with the extension removed.
210 Otherwise, ``None`` is returned.
211
212 Note that this function *only* returns a meaningful name for actual
213 Python modules - paths that potentially refer to Python packages will
214 still return ``None``.
215
216 .. versionchanged:: 3.3
217 This function is now based directly on :mod:`importlib` rather than the
218 deprecated :func:`getmoduleinfo`.
Georg Brandl116aa622007-08-15 14:28:22 +0000219
220
221.. function:: ismodule(object)
222
223 Return true if the object is a module.
224
225
226.. function:: isclass(object)
227
Georg Brandl39cadc32010-10-15 16:53:24 +0000228 Return true if the object is a class, whether built-in or created in Python
229 code.
Georg Brandl116aa622007-08-15 14:28:22 +0000230
231
232.. function:: ismethod(object)
233
Georg Brandl39cadc32010-10-15 16:53:24 +0000234 Return true if the object is a bound method written in Python.
Georg Brandl116aa622007-08-15 14:28:22 +0000235
236
237.. function:: isfunction(object)
238
Georg Brandl39cadc32010-10-15 16:53:24 +0000239 Return true if the object is a Python function, which includes functions
240 created by a :term:`lambda` expression.
Georg Brandl116aa622007-08-15 14:28:22 +0000241
242
Christian Heimes7131fd92008-02-19 14:21:46 +0000243.. function:: isgeneratorfunction(object)
244
245 Return true if the object is a Python generator function.
246
247
248.. function:: isgenerator(object)
249
250 Return true if the object is a generator.
251
252
Georg Brandl116aa622007-08-15 14:28:22 +0000253.. function:: istraceback(object)
254
255 Return true if the object is a traceback.
256
257
258.. function:: isframe(object)
259
260 Return true if the object is a frame.
261
262
263.. function:: iscode(object)
264
265 Return true if the object is a code.
266
267
268.. function:: isbuiltin(object)
269
Georg Brandl39cadc32010-10-15 16:53:24 +0000270 Return true if the object is a built-in function or a bound built-in method.
Georg Brandl116aa622007-08-15 14:28:22 +0000271
272
273.. function:: isroutine(object)
274
275 Return true if the object is a user-defined or built-in function or method.
276
Georg Brandl39cadc32010-10-15 16:53:24 +0000277
Christian Heimesbe5b30b2008-03-03 19:18:51 +0000278.. function:: isabstract(object)
279
280 Return true if the object is an abstract base class.
281
Georg Brandl116aa622007-08-15 14:28:22 +0000282
283.. function:: ismethoddescriptor(object)
284
Georg Brandl39cadc32010-10-15 16:53:24 +0000285 Return true if the object is a method descriptor, but not if
286 :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin`
287 are true.
Georg Brandl116aa622007-08-15 14:28:22 +0000288
Georg Brandle6bcc912008-05-12 18:05:20 +0000289 This, for example, is true of ``int.__add__``. An object passing this test
290 has a :attr:`__get__` attribute but not a :attr:`__set__` attribute, but
291 beyond that the set of attributes varies. :attr:`__name__` is usually
292 sensible, and :attr:`__doc__` often is.
Georg Brandl116aa622007-08-15 14:28:22 +0000293
Georg Brandl9afde1c2007-11-01 20:32:30 +0000294 Methods implemented via descriptors that also pass one of the other tests
295 return false from the :func:`ismethoddescriptor` test, simply because the
296 other tests promise more -- you can, e.g., count on having the
Christian Heimesff737952007-11-27 10:40:20 +0000297 :attr:`__func__` attribute (etc) when an object passes :func:`ismethod`.
Georg Brandl116aa622007-08-15 14:28:22 +0000298
299
300.. function:: isdatadescriptor(object)
301
302 Return true if the object is a data descriptor.
303
Georg Brandl9afde1c2007-11-01 20:32:30 +0000304 Data descriptors have both a :attr:`__get__` and a :attr:`__set__` attribute.
305 Examples are properties (defined in Python), getsets, and members. The
306 latter two are defined in C and there are more specific tests available for
307 those types, which is robust across Python implementations. Typically, data
308 descriptors will also have :attr:`__name__` and :attr:`__doc__` attributes
309 (properties, getsets, and members have both of these attributes), but this is
310 not guaranteed.
Georg Brandl116aa622007-08-15 14:28:22 +0000311
Georg Brandl116aa622007-08-15 14:28:22 +0000312
313.. function:: isgetsetdescriptor(object)
314
315 Return true if the object is a getset descriptor.
316
Georg Brandl495f7b52009-10-27 15:28:25 +0000317 .. impl-detail::
318
319 getsets are attributes defined in extension modules via
Georg Brandl60203b42010-10-06 10:11:56 +0000320 :c:type:`PyGetSetDef` structures. For Python implementations without such
Georg Brandl495f7b52009-10-27 15:28:25 +0000321 types, this method will always return ``False``.
Georg Brandl116aa622007-08-15 14:28:22 +0000322
Georg Brandl116aa622007-08-15 14:28:22 +0000323
324.. function:: ismemberdescriptor(object)
325
326 Return true if the object is a member descriptor.
327
Georg Brandl495f7b52009-10-27 15:28:25 +0000328 .. impl-detail::
329
330 Member descriptors are attributes defined in extension modules via
Georg Brandl60203b42010-10-06 10:11:56 +0000331 :c:type:`PyMemberDef` structures. For Python implementations without such
Georg Brandl495f7b52009-10-27 15:28:25 +0000332 types, this method will always return ``False``.
Georg Brandl116aa622007-08-15 14:28:22 +0000333
Georg Brandl116aa622007-08-15 14:28:22 +0000334
335.. _inspect-source:
336
337Retrieving source code
338----------------------
339
Georg Brandl116aa622007-08-15 14:28:22 +0000340.. function:: getdoc(object)
341
Georg Brandl0c77a822008-06-10 16:37:50 +0000342 Get the documentation string for an object, cleaned up with :func:`cleandoc`.
Georg Brandl116aa622007-08-15 14:28:22 +0000343
344
345.. function:: getcomments(object)
346
347 Return in a single string any lines of comments immediately preceding the
348 object's source code (for a class, function, or method), or at the top of the
349 Python source file (if the object is a module).
350
351
352.. function:: getfile(object)
353
354 Return the name of the (text or binary) file in which an object was defined.
355 This will fail with a :exc:`TypeError` if the object is a built-in module,
356 class, or function.
357
358
359.. function:: getmodule(object)
360
361 Try to guess which module an object was defined in.
362
363
364.. function:: getsourcefile(object)
365
366 Return the name of the Python source file in which an object was defined. This
367 will fail with a :exc:`TypeError` if the object is a built-in module, class, or
368 function.
369
370
371.. function:: getsourcelines(object)
372
373 Return a list of source lines and starting line number for an object. The
374 argument may be a module, class, method, function, traceback, frame, or code
375 object. The source code is returned as a list of the lines corresponding to the
376 object and the line number indicates where in the original source file the first
Antoine Pitrou62ab10a02011-10-12 20:10:51 +0200377 line of code was found. An :exc:`OSError` is raised if the source code cannot
Georg Brandl116aa622007-08-15 14:28:22 +0000378 be retrieved.
379
Antoine Pitrou62ab10a02011-10-12 20:10:51 +0200380 .. versionchanged:: 3.3
381 :exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the
382 former.
383
Georg Brandl116aa622007-08-15 14:28:22 +0000384
385.. function:: getsource(object)
386
387 Return the text of the source code for an object. The argument may be a module,
388 class, method, function, traceback, frame, or code object. The source code is
Antoine Pitrou62ab10a02011-10-12 20:10:51 +0200389 returned as a single string. An :exc:`OSError` is raised if the source code
Georg Brandl116aa622007-08-15 14:28:22 +0000390 cannot be retrieved.
391
Antoine Pitrou62ab10a02011-10-12 20:10:51 +0200392 .. versionchanged:: 3.3
393 :exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the
394 former.
395
Georg Brandl116aa622007-08-15 14:28:22 +0000396
Georg Brandl0c77a822008-06-10 16:37:50 +0000397.. function:: cleandoc(doc)
398
399 Clean up indentation from docstrings that are indented to line up with blocks
400 of code. Any whitespace that can be uniformly removed from the second line
401 onwards is removed. Also, all tabs are expanded to spaces.
402
Georg Brandl0c77a822008-06-10 16:37:50 +0000403
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300404.. _inspect-signature-object:
405
Georg Brandle4717722012-08-14 09:45:28 +0200406Introspecting callables with the Signature object
407-------------------------------------------------
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300408
409.. versionadded:: 3.3
410
Georg Brandle4717722012-08-14 09:45:28 +0200411The Signature object represents the call signature of a callable object and its
412return annotation. To retrieve a Signature object, use the :func:`signature`
413function.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300414
415.. function:: signature(callable)
416
Georg Brandle4717722012-08-14 09:45:28 +0200417 Return a :class:`Signature` object for the given ``callable``::
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300418
419 >>> from inspect import signature
420 >>> def foo(a, *, b:int, **kwargs):
421 ... pass
422
423 >>> sig = signature(foo)
424
425 >>> str(sig)
426 '(a, *, b:int, **kwargs)'
427
428 >>> str(sig.parameters['b'])
429 'b:int'
430
431 >>> sig.parameters['b'].annotation
432 <class 'int'>
433
Georg Brandle4717722012-08-14 09:45:28 +0200434 Accepts a wide range of python callables, from plain functions and classes to
435 :func:`functools.partial` objects.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300436
Larry Hastings5c661892014-01-24 06:17:25 -0800437 Raises :exc:`ValueError` if no signature can be provided, and
438 :exc:`TypeError` if that type of object is not supported.
439
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300440 .. note::
441
Georg Brandle4717722012-08-14 09:45:28 +0200442 Some callables may not be introspectable in certain implementations of
Yury Selivanovd71e52f2014-01-30 00:22:57 -0500443 Python. For example, in CPython, some built-in functions defined in
444 C provide no metadata about their arguments.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300445
446
Yury Selivanov78356892014-01-30 00:10:54 -0500447.. class:: Signature(parameters=None, \*, return_annotation=Signature.empty)
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300448
Georg Brandle4717722012-08-14 09:45:28 +0200449 A Signature object represents the call signature of a function and its return
450 annotation. For each parameter accepted by the function it stores a
451 :class:`Parameter` object in its :attr:`parameters` collection.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300452
Yury Selivanov78356892014-01-30 00:10:54 -0500453 The optional *parameters* argument is a sequence of :class:`Parameter`
454 objects, which is validated to check that there are no parameters with
455 duplicate names, and that the parameters are in the right order, i.e.
456 positional-only first, then positional-or-keyword, and that parameters with
457 defaults follow parameters without defaults.
458
459 The optional *return_annotation* argument, can be an arbitrary Python object,
460 is the "return" annotation of the callable.
461
Georg Brandle4717722012-08-14 09:45:28 +0200462 Signature objects are *immutable*. Use :meth:`Signature.replace` to make a
463 modified copy.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300464
465 .. attribute:: Signature.empty
466
467 A special class-level marker to specify absence of a return annotation.
468
469 .. attribute:: Signature.parameters
470
471 An ordered mapping of parameters' names to the corresponding
472 :class:`Parameter` objects.
473
474 .. attribute:: Signature.return_annotation
475
Georg Brandle4717722012-08-14 09:45:28 +0200476 The "return" annotation for the callable. If the callable has no "return"
477 annotation, this attribute is set to :attr:`Signature.empty`.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300478
479 .. method:: Signature.bind(*args, **kwargs)
480
Georg Brandle4717722012-08-14 09:45:28 +0200481 Create a mapping from positional and keyword arguments to parameters.
482 Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the
483 signature, or raises a :exc:`TypeError`.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300484
485 .. method:: Signature.bind_partial(*args, **kwargs)
486
Georg Brandle4717722012-08-14 09:45:28 +0200487 Works the same way as :meth:`Signature.bind`, but allows the omission of
488 some required arguments (mimics :func:`functools.partial` behavior.)
489 Returns :class:`BoundArguments`, or raises a :exc:`TypeError` if the
490 passed arguments do not match the signature.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300491
Ezio Melotti8429b672012-09-14 06:35:09 +0300492 .. method:: Signature.replace(*[, parameters][, return_annotation])
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300493
Georg Brandle4717722012-08-14 09:45:28 +0200494 Create a new Signature instance based on the instance replace was invoked
495 on. It is possible to pass different ``parameters`` and/or
496 ``return_annotation`` to override the corresponding properties of the base
497 signature. To remove return_annotation from the copied Signature, pass in
498 :attr:`Signature.empty`.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300499
500 ::
501
502 >>> def test(a, b):
503 ... pass
504 >>> sig = signature(test)
505 >>> new_sig = sig.replace(return_annotation="new return anno")
506 >>> str(new_sig)
507 "(a, b) -> 'new return anno'"
508
509
Yury Selivanov78356892014-01-30 00:10:54 -0500510.. class:: Parameter(name, kind, \*, default=Parameter.empty, annotation=Parameter.empty)
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300511
Georg Brandle4717722012-08-14 09:45:28 +0200512 Parameter objects are *immutable*. Instead of modifying a Parameter object,
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300513 you can use :meth:`Parameter.replace` to create a modified copy.
514
515 .. attribute:: Parameter.empty
516
Georg Brandle4717722012-08-14 09:45:28 +0200517 A special class-level marker to specify absence of default values and
518 annotations.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300519
520 .. attribute:: Parameter.name
521
Yury Selivanov2393dca2014-01-27 15:07:58 -0500522 The name of the parameter as a string. The name must be a valid
523 Python identifier.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300524
525 .. attribute:: Parameter.default
526
Georg Brandle4717722012-08-14 09:45:28 +0200527 The default value for the parameter. If the parameter has no default
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300528 value, this attribute is set to :attr:`Parameter.empty`.
529
530 .. attribute:: Parameter.annotation
531
Georg Brandle4717722012-08-14 09:45:28 +0200532 The annotation for the parameter. If the parameter has no annotation,
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300533 this attribute is set to :attr:`Parameter.empty`.
534
535 .. attribute:: Parameter.kind
536
Georg Brandle4717722012-08-14 09:45:28 +0200537 Describes how argument values are bound to the parameter. Possible values
538 (accessible via :class:`Parameter`, like ``Parameter.KEYWORD_ONLY``):
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300539
Georg Brandl44ea77b2013-03-28 13:28:44 +0100540 .. tabularcolumns:: |l|L|
541
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300542 +------------------------+----------------------------------------------+
543 | Name | Meaning |
544 +========================+==============================================+
545 | *POSITIONAL_ONLY* | Value must be supplied as a positional |
546 | | argument. |
547 | | |
548 | | Python has no explicit syntax for defining |
549 | | positional-only parameters, but many built-in|
550 | | and extension module functions (especially |
551 | | those that accept only one or two parameters)|
552 | | accept them. |
553 +------------------------+----------------------------------------------+
554 | *POSITIONAL_OR_KEYWORD*| Value may be supplied as either a keyword or |
555 | | positional argument (this is the standard |
556 | | binding behaviour for functions implemented |
557 | | in Python.) |
558 +------------------------+----------------------------------------------+
559 | *VAR_POSITIONAL* | A tuple of positional arguments that aren't |
560 | | bound to any other parameter. This |
561 | | corresponds to a ``*args`` parameter in a |
562 | | Python function definition. |
563 +------------------------+----------------------------------------------+
564 | *KEYWORD_ONLY* | Value must be supplied as a keyword argument.|
565 | | Keyword only parameters are those which |
566 | | appear after a ``*`` or ``*args`` entry in a |
567 | | Python function definition. |
568 +------------------------+----------------------------------------------+
569 | *VAR_KEYWORD* | A dict of keyword arguments that aren't bound|
570 | | to any other parameter. This corresponds to a|
571 | | ``**kwargs`` parameter in a Python function |
572 | | definition. |
573 +------------------------+----------------------------------------------+
574
Andrew Svetloveed18082012-08-13 18:23:54 +0300575 Example: print all keyword-only arguments without default values::
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300576
577 >>> def foo(a, b, *, c, d=10):
578 ... pass
579
580 >>> sig = signature(foo)
581 >>> for param in sig.parameters.values():
582 ... if (param.kind == param.KEYWORD_ONLY and
583 ... param.default is param.empty):
584 ... print('Parameter:', param)
585 Parameter: c
586
Ezio Melotti8429b672012-09-14 06:35:09 +0300587 .. method:: Parameter.replace(*[, name][, kind][, default][, annotation])
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300588
Georg Brandle4717722012-08-14 09:45:28 +0200589 Create a new Parameter instance based on the instance replaced was invoked
590 on. To override a :class:`Parameter` attribute, pass the corresponding
591 argument. To remove a default value or/and an annotation from a
592 Parameter, pass :attr:`Parameter.empty`.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300593
594 ::
595
596 >>> from inspect import Parameter
597 >>> param = Parameter('foo', Parameter.KEYWORD_ONLY, default=42)
598 >>> str(param)
599 'foo=42'
600
601 >>> str(param.replace()) # Will create a shallow copy of 'param'
602 'foo=42'
603
604 >>> str(param.replace(default=Parameter.empty, annotation='spam'))
605 "foo:'spam'"
606
Yury Selivanov2393dca2014-01-27 15:07:58 -0500607 .. versionchanged:: 3.4
608 In Python 3.3 Parameter objects were allowed to have ``name`` set
609 to ``None`` if their ``kind`` was set to ``POSITIONAL_ONLY``.
610 This is no longer permitted.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300611
612.. class:: BoundArguments
613
614 Result of a :meth:`Signature.bind` or :meth:`Signature.bind_partial` call.
615 Holds the mapping of arguments to the function's parameters.
616
617 .. attribute:: BoundArguments.arguments
618
619 An ordered, mutable mapping (:class:`collections.OrderedDict`) of
Georg Brandle4717722012-08-14 09:45:28 +0200620 parameters' names to arguments' values. Contains only explicitly bound
621 arguments. Changes in :attr:`arguments` will reflect in :attr:`args` and
622 :attr:`kwargs`.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300623
Georg Brandle4717722012-08-14 09:45:28 +0200624 Should be used in conjunction with :attr:`Signature.parameters` for any
625 argument processing purposes.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300626
627 .. note::
628
629 Arguments for which :meth:`Signature.bind` or
630 :meth:`Signature.bind_partial` relied on a default value are skipped.
Georg Brandle4717722012-08-14 09:45:28 +0200631 However, if needed, it is easy to include them.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300632
633 ::
634
635 >>> def foo(a, b=10):
636 ... pass
637
638 >>> sig = signature(foo)
639 >>> ba = sig.bind(5)
640
641 >>> ba.args, ba.kwargs
642 ((5,), {})
643
644 >>> for param in sig.parameters.values():
Yury Selivanova5ef8322014-12-04 22:47:44 -0500645 ... if (param.name not in ba.arguments
646 ... and param.default is not param.empty):
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300647 ... ba.arguments[param.name] = param.default
648
649 >>> ba.args, ba.kwargs
650 ((5, 10), {})
651
652
653 .. attribute:: BoundArguments.args
654
Georg Brandle4717722012-08-14 09:45:28 +0200655 A tuple of positional arguments values. Dynamically computed from the
656 :attr:`arguments` attribute.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300657
658 .. attribute:: BoundArguments.kwargs
659
Georg Brandle4717722012-08-14 09:45:28 +0200660 A dict of keyword arguments values. Dynamically computed from the
661 :attr:`arguments` attribute.
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300662
Georg Brandle4717722012-08-14 09:45:28 +0200663 The :attr:`args` and :attr:`kwargs` properties can be used to invoke
664 functions::
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300665
666 def test(a, *, b):
667 ...
668
669 sig = signature(test)
670 ba = sig.bind(10, b=20)
671 test(*ba.args, **ba.kwargs)
672
673
Georg Brandle4717722012-08-14 09:45:28 +0200674.. seealso::
675
676 :pep:`362` - Function Signature Object.
677 The detailed specification, implementation details and examples.
678
679
Georg Brandl116aa622007-08-15 14:28:22 +0000680.. _inspect-classes-functions:
681
682Classes and functions
683---------------------
684
Georg Brandl3dd33882009-06-01 17:35:27 +0000685.. function:: getclasstree(classes, unique=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000686
687 Arrange the given list of classes into a hierarchy of nested lists. Where a
688 nested list appears, it contains classes derived from the class whose entry
689 immediately precedes the list. Each entry is a 2-tuple containing a class and a
690 tuple of its base classes. If the *unique* argument is true, exactly one entry
691 appears in the returned structure for each class in the given list. Otherwise,
692 classes using multiple inheritance and their descendants will appear multiple
693 times.
694
695
696.. function:: getargspec(func)
697
Georg Brandl82402752010-01-09 09:48:46 +0000698 Get the names and default values of a Python function's arguments. A
Georg Brandlb30f3302011-01-06 09:23:56 +0000699 :term:`named tuple` ``ArgSpec(args, varargs, keywords, defaults)`` is
700 returned. *args* is a list of the argument names. *varargs* and *keywords*
701 are the names of the ``*`` and ``**`` arguments or ``None``. *defaults* is a
Larry Hastingsbf84bba2012-09-21 09:40:41 -0700702 tuple of default argument values or ``None`` if there are no default
703 arguments; if this tuple has *n* elements, they correspond to the last
704 *n* elements listed in *args*.
Georg Brandl138bcb52007-09-12 19:04:21 +0000705
706 .. deprecated:: 3.0
707 Use :func:`getfullargspec` instead, which provides information about
Benjamin Peterson3e8e9cc2008-11-12 21:26:46 +0000708 keyword-only arguments and annotations.
Georg Brandl138bcb52007-09-12 19:04:21 +0000709
710
711.. function:: getfullargspec(func)
712
Georg Brandl82402752010-01-09 09:48:46 +0000713 Get the names and default values of a Python function's arguments. A
714 :term:`named tuple` is returned:
Georg Brandl138bcb52007-09-12 19:04:21 +0000715
Georg Brandl3dd33882009-06-01 17:35:27 +0000716 ``FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults,
717 annotations)``
Georg Brandl138bcb52007-09-12 19:04:21 +0000718
719 *args* is a list of the argument names. *varargs* and *varkw* are the names
Larry Hastingsbf84bba2012-09-21 09:40:41 -0700720 of the ``*`` and ``**`` arguments or ``None``. *defaults* is an *n*-tuple
721 of the default values of the last *n* arguments, or ``None`` if there are no
722 default arguments. *kwonlyargs* is a list of
Georg Brandl138bcb52007-09-12 19:04:21 +0000723 keyword-only argument names. *kwonlydefaults* is a dictionary mapping names
724 from kwonlyargs to defaults. *annotations* is a dictionary mapping argument
725 names to annotations.
726
727 The first four items in the tuple correspond to :func:`getargspec`.
Georg Brandl116aa622007-08-15 14:28:22 +0000728
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300729 .. note::
730 Consider using the new :ref:`Signature Object <inspect-signature-object>`
731 interface, which provides a better way of introspecting functions.
732
Larry Hastings3732ed22014-03-15 21:13:56 -0700733 .. versionchanged:: 3.4
734 This function is now based on :func:`signature`, but still ignores
735 ``__wrapped__`` attributes and includes the already bound first
736 parameter in the signature output for bound methods.
737
Georg Brandl116aa622007-08-15 14:28:22 +0000738
739.. function:: getargvalues(frame)
740
Georg Brandl3dd33882009-06-01 17:35:27 +0000741 Get information about arguments passed into a particular frame. A
742 :term:`named tuple` ``ArgInfo(args, varargs, keywords, locals)`` is
Georg Brandlb30f3302011-01-06 09:23:56 +0000743 returned. *args* is a list of the argument names. *varargs* and *keywords*
744 are the names of the ``*`` and ``**`` arguments or ``None``. *locals* is the
Georg Brandlc1c4bf82010-10-15 16:07:41 +0000745 locals dictionary of the given frame.
Georg Brandl116aa622007-08-15 14:28:22 +0000746
747
Andrew Svetlov735d3172012-10-27 00:28:20 +0300748.. function:: formatargspec(args[, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations[, formatarg, formatvarargs, formatvarkw, formatvalue, formatreturns, formatannotations]])
Georg Brandl116aa622007-08-15 14:28:22 +0000749
Michael Foord3af125a2012-04-21 18:22:28 +0100750 Format a pretty argument spec from the values returned by
751 :func:`getargspec` or :func:`getfullargspec`.
752
753 The first seven arguments are (``args``, ``varargs``, ``varkw``,
Georg Brandl8ed75cd2014-10-31 10:25:48 +0100754 ``defaults``, ``kwonlyargs``, ``kwonlydefaults``, ``annotations``).
Andrew Svetlov735d3172012-10-27 00:28:20 +0300755
Georg Brandl8ed75cd2014-10-31 10:25:48 +0100756 The other six arguments are functions that are called to turn argument names,
757 ``*`` argument name, ``**`` argument name, default values, return annotation
758 and individual annotations into strings, respectively.
759
760 For example:
761
762 >>> from inspect import formatargspec, getfullargspec
763 >>> def f(a: int, b: float):
764 ... pass
765 ...
766 >>> formatargspec(*getfullargspec(f))
767 '(a: int, b: float)'
Georg Brandl116aa622007-08-15 14:28:22 +0000768
769
Georg Brandlc1c4bf82010-10-15 16:07:41 +0000770.. function:: formatargvalues(args[, varargs, varkw, locals, formatarg, formatvarargs, formatvarkw, formatvalue])
Georg Brandl116aa622007-08-15 14:28:22 +0000771
772 Format a pretty argument spec from the four values returned by
773 :func:`getargvalues`. The format\* arguments are the corresponding optional
774 formatting functions that are called to turn names and values into strings.
775
776
777.. function:: getmro(cls)
778
779 Return a tuple of class cls's base classes, including cls, in method resolution
780 order. No class appears more than once in this tuple. Note that the method
781 resolution order depends on cls's type. Unless a very peculiar user-defined
782 metatype is in use, cls will be the first element of the tuple.
783
784
Benjamin Peterson3a990c62014-01-02 12:22:30 -0600785.. function:: getcallargs(func, *args, **kwds)
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000786
787 Bind the *args* and *kwds* to the argument names of the Python function or
788 method *func*, as if it was called with them. For bound methods, bind also the
789 first argument (typically named ``self``) to the associated instance. A dict
790 is returned, mapping the argument names (including the names of the ``*`` and
791 ``**`` arguments, if any) to their values from *args* and *kwds*. In case of
792 invoking *func* incorrectly, i.e. whenever ``func(*args, **kwds)`` would raise
793 an exception because of incompatible signature, an exception of the same type
794 and the same or similar message is raised. For example::
795
796 >>> from inspect import getcallargs
797 >>> def f(a, b=1, *pos, **named):
798 ... pass
Andrew Svetlove939f382012-08-09 13:25:32 +0300799 >>> getcallargs(f, 1, 2, 3) == {'a': 1, 'named': {}, 'b': 2, 'pos': (3,)}
800 True
801 >>> getcallargs(f, a=2, x=4) == {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': ()}
802 True
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000803 >>> getcallargs(f)
804 Traceback (most recent call last):
805 ...
Andrew Svetlove939f382012-08-09 13:25:32 +0300806 TypeError: f() missing 1 required positional argument: 'a'
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000807
808 .. versionadded:: 3.2
809
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300810 .. note::
811 Consider using the new :meth:`Signature.bind` instead.
812
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000813
Nick Coghlan2f92e542012-06-23 19:39:55 +1000814.. function:: getclosurevars(func)
815
816 Get the mapping of external name references in a Python function or
817 method *func* to their current values. A
818 :term:`named tuple` ``ClosureVars(nonlocals, globals, builtins, unbound)``
819 is returned. *nonlocals* maps referenced names to lexical closure
820 variables, *globals* to the function's module globals and *builtins* to
821 the builtins visible from the function body. *unbound* is the set of names
822 referenced in the function that could not be resolved at all given the
823 current module globals and builtins.
824
825 :exc:`TypeError` is raised if *func* is not a Python function or method.
826
827 .. versionadded:: 3.3
828
829
Nick Coghlane8c45d62013-07-28 20:00:01 +1000830.. function:: unwrap(func, *, stop=None)
831
832 Get the object wrapped by *func*. It follows the chain of :attr:`__wrapped__`
833 attributes returning the last object in the chain.
834
835 *stop* is an optional callback accepting an object in the wrapper chain
836 as its sole argument that allows the unwrapping to be terminated early if
837 the callback returns a true value. If the callback never returns a true
838 value, the last object in the chain is returned as usual. For example,
839 :func:`signature` uses this to stop unwrapping if any object in the
840 chain has a ``__signature__`` attribute defined.
841
842 :exc:`ValueError` is raised if a cycle is encountered.
843
844 .. versionadded:: 3.4
845
846
Georg Brandl116aa622007-08-15 14:28:22 +0000847.. _inspect-stack:
848
849The interpreter stack
850---------------------
851
852When the following functions return "frame records," each record is a tuple of
853six items: the frame object, the filename, the line number of the current line,
854the function name, a list of lines of context from the source code, and the
855index of the current line within that list.
856
Georg Brandle720c0a2009-04-27 16:20:50 +0000857.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000858
859 Keeping references to frame objects, as found in the first element of the frame
860 records these functions return, can cause your program to create reference
861 cycles. Once a reference cycle has been created, the lifespan of all objects
862 which can be accessed from the objects which form the cycle can become much
863 longer even if Python's optional cycle detector is enabled. If such cycles must
864 be created, it is important to ensure they are explicitly broken to avoid the
865 delayed destruction of objects and increased memory consumption which occurs.
866
867 Though the cycle detector will catch these, destruction of the frames (and local
868 variables) can be made deterministic by removing the cycle in a
869 :keyword:`finally` clause. This is also important if the cycle detector was
870 disabled when Python was compiled or using :func:`gc.disable`. For example::
871
872 def handle_stackframe_without_leak():
873 frame = inspect.currentframe()
874 try:
875 # do something with the frame
876 finally:
877 del frame
878
Antoine Pitrou58720d62013-08-05 23:26:40 +0200879 If you want to keep the frame around (for example to print a traceback
880 later), you can also break reference cycles by using the
881 :meth:`frame.clear` method.
882
Georg Brandl116aa622007-08-15 14:28:22 +0000883The optional *context* argument supported by most of these functions specifies
884the number of lines of context to return, which are centered around the current
885line.
886
887
Georg Brandl3dd33882009-06-01 17:35:27 +0000888.. function:: getframeinfo(frame, context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000889
Georg Brandl48310cd2009-01-03 21:18:54 +0000890 Get information about a frame or traceback object. A :term:`named tuple`
Christian Heimes25bb7832008-01-11 16:17:00 +0000891 ``Traceback(filename, lineno, function, code_context, index)`` is returned.
Georg Brandl116aa622007-08-15 14:28:22 +0000892
893
Georg Brandl3dd33882009-06-01 17:35:27 +0000894.. function:: getouterframes(frame, context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000895
896 Get a list of frame records for a frame and all outer frames. These frames
897 represent the calls that lead to the creation of *frame*. The first entry in the
898 returned list represents *frame*; the last entry represents the outermost call
899 on *frame*'s stack.
900
901
Georg Brandl3dd33882009-06-01 17:35:27 +0000902.. function:: getinnerframes(traceback, context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000903
904 Get a list of frame records for a traceback's frame and all inner frames. These
905 frames represent calls made as a consequence of *frame*. The first entry in the
906 list represents *traceback*; the last entry represents where the exception was
907 raised.
908
909
910.. function:: currentframe()
911
912 Return the frame object for the caller's stack frame.
913
Georg Brandl495f7b52009-10-27 15:28:25 +0000914 .. impl-detail::
915
916 This function relies on Python stack frame support in the interpreter,
917 which isn't guaranteed to exist in all implementations of Python. If
918 running in an implementation without Python stack frame support this
919 function returns ``None``.
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000920
Georg Brandl116aa622007-08-15 14:28:22 +0000921
Georg Brandl3dd33882009-06-01 17:35:27 +0000922.. function:: stack(context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000923
924 Return a list of frame records for the caller's stack. The first entry in the
925 returned list represents the caller; the last entry represents the outermost
926 call on the stack.
927
928
Georg Brandl3dd33882009-06-01 17:35:27 +0000929.. function:: trace(context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000930
931 Return a list of frame records for the stack between the current frame and the
932 frame in which an exception currently being handled was raised in. The first
933 entry in the list represents the caller; the last entry represents where the
934 exception was raised.
935
Michael Foord95fc51d2010-11-20 15:07:30 +0000936
937Fetching attributes statically
938------------------------------
939
940Both :func:`getattr` and :func:`hasattr` can trigger code execution when
941fetching or checking for the existence of attributes. Descriptors, like
942properties, will be invoked and :meth:`__getattr__` and :meth:`__getattribute__`
943may be called.
944
945For cases where you want passive introspection, like documentation tools, this
Éric Araujo941afed2011-09-01 02:47:34 +0200946can be inconvenient. :func:`getattr_static` has the same signature as :func:`getattr`
Michael Foord95fc51d2010-11-20 15:07:30 +0000947but avoids executing code when it fetches attributes.
948
949.. function:: getattr_static(obj, attr, default=None)
950
951 Retrieve attributes without triggering dynamic lookup via the
Éric Araujo941afed2011-09-01 02:47:34 +0200952 descriptor protocol, :meth:`__getattr__` or :meth:`__getattribute__`.
Michael Foord95fc51d2010-11-20 15:07:30 +0000953
954 Note: this function may not be able to retrieve all attributes
955 that getattr can fetch (like dynamically created attributes)
956 and may find attributes that getattr can't (like descriptors
957 that raise AttributeError). It can also return descriptors objects
958 instead of instance members.
959
Serhiy Storchakabfdcd432013-10-13 23:09:14 +0300960 If the instance :attr:`~object.__dict__` is shadowed by another member (for
961 example a property) then this function will be unable to find instance
962 members.
Nick Coghlan2dad5ca2010-11-21 03:55:53 +0000963
Michael Foorddcebe0f2011-03-15 19:20:44 -0400964 .. versionadded:: 3.2
Michael Foord95fc51d2010-11-20 15:07:30 +0000965
Éric Araujo941afed2011-09-01 02:47:34 +0200966:func:`getattr_static` does not resolve descriptors, for example slot descriptors or
Michael Foorde5162652010-11-20 16:40:44 +0000967getset descriptors on objects implemented in C. The descriptor object
Michael Foord95fc51d2010-11-20 15:07:30 +0000968is returned instead of the underlying attribute.
969
970You can handle these with code like the following. Note that
971for arbitrary getset descriptors invoking these may trigger
972code execution::
973
974 # example code for resolving the builtin descriptor types
Éric Araujo28053fb2010-11-22 03:09:19 +0000975 class _foo:
Michael Foord95fc51d2010-11-20 15:07:30 +0000976 __slots__ = ['foo']
977
978 slot_descriptor = type(_foo.foo)
979 getset_descriptor = type(type(open(__file__)).name)
980 wrapper_descriptor = type(str.__dict__['__add__'])
981 descriptor_types = (slot_descriptor, getset_descriptor, wrapper_descriptor)
982
983 result = getattr_static(some_object, 'foo')
984 if type(result) in descriptor_types:
985 try:
986 result = result.__get__()
987 except AttributeError:
988 # descriptors can raise AttributeError to
989 # indicate there is no underlying value
990 # in which case the descriptor itself will
991 # have to do
992 pass
Nick Coghlane0f04652010-11-21 03:44:04 +0000993
Nick Coghlan2dad5ca2010-11-21 03:55:53 +0000994
Nick Coghlane0f04652010-11-21 03:44:04 +0000995Current State of a Generator
996----------------------------
997
998When implementing coroutine schedulers and for other advanced uses of
999generators, it is useful to determine whether a generator is currently
1000executing, is waiting to start or resume or execution, or has already
Raymond Hettinger48f3bd32010-12-16 00:30:53 +00001001terminated. :func:`getgeneratorstate` allows the current state of a
Nick Coghlane0f04652010-11-21 03:44:04 +00001002generator to be determined easily.
1003
1004.. function:: getgeneratorstate(generator)
1005
Raymond Hettinger48f3bd32010-12-16 00:30:53 +00001006 Get current state of a generator-iterator.
Nick Coghlane0f04652010-11-21 03:44:04 +00001007
Raymond Hettinger48f3bd32010-12-16 00:30:53 +00001008 Possible states are:
Raymond Hettingera275c982011-01-20 04:03:19 +00001009 * GEN_CREATED: Waiting to start execution.
1010 * GEN_RUNNING: Currently being executed by the interpreter.
1011 * GEN_SUSPENDED: Currently suspended at a yield expression.
1012 * GEN_CLOSED: Execution has completed.
Nick Coghlane0f04652010-11-21 03:44:04 +00001013
Nick Coghlan2dad5ca2010-11-21 03:55:53 +00001014 .. versionadded:: 3.2
Nick Coghlan04e2e3f2012-06-23 19:52:05 +10001015
1016The current internal state of the generator can also be queried. This is
1017mostly useful for testing purposes, to ensure that internal state is being
1018updated as expected:
1019
1020.. function:: getgeneratorlocals(generator)
1021
1022 Get the mapping of live local variables in *generator* to their current
1023 values. A dictionary is returned that maps from variable names to values.
1024 This is the equivalent of calling :func:`locals` in the body of the
1025 generator, and all the same caveats apply.
1026
1027 If *generator* is a :term:`generator` with no currently associated frame,
1028 then an empty dictionary is returned. :exc:`TypeError` is raised if
1029 *generator* is not a Python generator object.
1030
1031 .. impl-detail::
1032
1033 This function relies on the generator exposing a Python stack frame
1034 for introspection, which isn't guaranteed to be the case in all
1035 implementations of Python. In such cases, this function will always
1036 return an empty dictionary.
1037
1038 .. versionadded:: 3.3
Nick Coghlanf94a16b2013-09-22 22:46:49 +10001039
1040
Nick Coghlan367df122013-10-27 01:57:34 +10001041.. _inspect-module-cli:
1042
Nick Coghlanf94a16b2013-09-22 22:46:49 +10001043Command Line Interface
1044----------------------
1045
1046The :mod:`inspect` module also provides a basic introspection capability
1047from the command line.
1048
1049.. program:: inspect
1050
1051By default, accepts the name of a module and prints the source of that
1052module. A class or function within the module can be printed instead by
1053appended a colon and the qualified name of the target object.
1054
1055.. cmdoption:: --details
1056
1057 Print information about the specified object rather than the source code