blob: e5010c81910fcfd68c59bae6964638ec5f7830bc [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 |
72| | | values for arguments |
73+-----------+-----------------+---------------------------+
74| | __globals__ | global namespace in which |
75| | | this function was defined |
76+-----------+-----------------+---------------------------+
77| traceback | tb_frame | frame object at this |
78| | | level |
79+-----------+-----------------+---------------------------+
80| | tb_lasti | index of last attempted |
81| | | instruction in bytecode |
82+-----------+-----------------+---------------------------+
83| | tb_lineno | current line number in |
84| | | Python source code |
85+-----------+-----------------+---------------------------+
86| | tb_next | next inner traceback |
87| | | object (called by this |
88| | | level) |
89+-----------+-----------------+---------------------------+
90| frame | f_back | next outer frame object |
91| | | (this frame's caller) |
92+-----------+-----------------+---------------------------+
Georg Brandlc4a55fc2010-02-06 18:46:57 +000093| | f_builtins | builtins namespace seen |
Georg Brandl55ac8f02007-09-01 13:51:09 +000094| | | by this frame |
95+-----------+-----------------+---------------------------+
96| | f_code | code object being |
97| | | executed in this frame |
98+-----------+-----------------+---------------------------+
Georg Brandl55ac8f02007-09-01 13:51:09 +000099| | f_globals | global namespace seen by |
100| | | this frame |
101+-----------+-----------------+---------------------------+
102| | f_lasti | index of last attempted |
103| | | instruction in bytecode |
104+-----------+-----------------+---------------------------+
105| | f_lineno | current line number in |
106| | | Python source code |
107+-----------+-----------------+---------------------------+
108| | f_locals | local namespace seen by |
109| | | this frame |
110+-----------+-----------------+---------------------------+
111| | f_restricted | 0 or 1 if frame is in |
112| | | restricted execution mode |
113+-----------+-----------------+---------------------------+
114| | f_trace | tracing function for this |
115| | | frame, or ``None`` |
116+-----------+-----------------+---------------------------+
117| code | co_argcount | number of arguments (not |
118| | | including \* or \*\* |
119| | | args) |
120+-----------+-----------------+---------------------------+
121| | co_code | string of raw compiled |
122| | | bytecode |
123+-----------+-----------------+---------------------------+
124| | co_consts | tuple of constants used |
125| | | in the bytecode |
126+-----------+-----------------+---------------------------+
127| | co_filename | name of file in which |
128| | | this code object was |
129| | | created |
130+-----------+-----------------+---------------------------+
131| | co_firstlineno | number of first line in |
132| | | Python source code |
133+-----------+-----------------+---------------------------+
134| | co_flags | bitmap: 1=optimized ``|`` |
135| | | 2=newlocals ``|`` 4=\*arg |
136| | | ``|`` 8=\*\*arg |
137+-----------+-----------------+---------------------------+
138| | co_lnotab | encoded mapping of line |
139| | | numbers to bytecode |
140| | | indices |
141+-----------+-----------------+---------------------------+
142| | co_name | name with which this code |
143| | | object was defined |
144+-----------+-----------------+---------------------------+
145| | co_names | tuple of names of local |
146| | | variables |
147+-----------+-----------------+---------------------------+
148| | co_nlocals | number of local variables |
149+-----------+-----------------+---------------------------+
150| | co_stacksize | virtual machine stack |
151| | | space required |
152+-----------+-----------------+---------------------------+
153| | co_varnames | tuple of names of |
154| | | arguments and local |
155| | | variables |
156+-----------+-----------------+---------------------------+
157| builtin | __doc__ | documentation string |
158+-----------+-----------------+---------------------------+
159| | __name__ | original name of this |
160| | | function or method |
161+-----------+-----------------+---------------------------+
162| | __self__ | instance to which a |
163| | | method is bound, or |
164| | | ``None`` |
165+-----------+-----------------+---------------------------+
Georg Brandl116aa622007-08-15 14:28:22 +0000166
167
168.. function:: getmembers(object[, predicate])
169
170 Return all the members of an object in a list of (name, value) pairs sorted by
171 name. If the optional *predicate* argument is supplied, only members for which
172 the predicate returns a true value are included.
173
Christian Heimes7f044312008-01-06 17:05:40 +0000174 .. note::
175
176 :func:`getmembers` does not return metaclass attributes when the argument
177 is a class (this behavior is inherited from the :func:`dir` function).
178
Georg Brandl116aa622007-08-15 14:28:22 +0000179
180.. function:: getmoduleinfo(path)
181
Georg Brandlb30f3302011-01-06 09:23:56 +0000182 Returns a :term:`named tuple` ``ModuleInfo(name, suffix, mode, module_type)``
183 of values that describe how Python will interpret the file identified by
184 *path* if it is a module, or ``None`` if it would not be identified as a
185 module. In that tuple, *name* is the name of the module without the name of
186 any enclosing package, *suffix* is the trailing part of the file name (which
187 may not be a dot-delimited extension), *mode* is the :func:`open` mode that
188 would be used (``'r'`` or ``'rb'``), and *module_type* is an integer giving
189 the type of the module. *module_type* will have a value which can be
190 compared to the constants defined in the :mod:`imp` module; see the
191 documentation for that module for more information on module types.
Georg Brandl116aa622007-08-15 14:28:22 +0000192
Brett Cannoncb66eb02012-05-11 12:58:42 -0400193 .. deprecated:: 3.3
194 You may check the file path's suffix against the supported suffixes
195 listed in :mod:`importlib.machinery` to infer the same information.
196
Georg Brandl116aa622007-08-15 14:28:22 +0000197
198.. function:: getmodulename(path)
199
200 Return the name of the module named by the file *path*, without including the
Nick Coghlan76e07702012-07-18 23:14:57 +1000201 names of enclosing packages. The file extension is checked against all of
202 the entries in :func:`importlib.machinery.all_suffixes`. If it matches,
203 the final path component is returned with the extension removed.
204 Otherwise, ``None`` is returned.
205
206 Note that this function *only* returns a meaningful name for actual
207 Python modules - paths that potentially refer to Python packages will
208 still return ``None``.
209
210 .. versionchanged:: 3.3
211 This function is now based directly on :mod:`importlib` rather than the
212 deprecated :func:`getmoduleinfo`.
Georg Brandl116aa622007-08-15 14:28:22 +0000213
214
215.. function:: ismodule(object)
216
217 Return true if the object is a module.
218
219
220.. function:: isclass(object)
221
Georg Brandl39cadc32010-10-15 16:53:24 +0000222 Return true if the object is a class, whether built-in or created in Python
223 code.
Georg Brandl116aa622007-08-15 14:28:22 +0000224
225
226.. function:: ismethod(object)
227
Georg Brandl39cadc32010-10-15 16:53:24 +0000228 Return true if the object is a bound method written in Python.
Georg Brandl116aa622007-08-15 14:28:22 +0000229
230
231.. function:: isfunction(object)
232
Georg Brandl39cadc32010-10-15 16:53:24 +0000233 Return true if the object is a Python function, which includes functions
234 created by a :term:`lambda` expression.
Georg Brandl116aa622007-08-15 14:28:22 +0000235
236
Christian Heimes7131fd92008-02-19 14:21:46 +0000237.. function:: isgeneratorfunction(object)
238
239 Return true if the object is a Python generator function.
240
241
242.. function:: isgenerator(object)
243
244 Return true if the object is a generator.
245
246
Georg Brandl116aa622007-08-15 14:28:22 +0000247.. function:: istraceback(object)
248
249 Return true if the object is a traceback.
250
251
252.. function:: isframe(object)
253
254 Return true if the object is a frame.
255
256
257.. function:: iscode(object)
258
259 Return true if the object is a code.
260
261
262.. function:: isbuiltin(object)
263
Georg Brandl39cadc32010-10-15 16:53:24 +0000264 Return true if the object is a built-in function or a bound built-in method.
Georg Brandl116aa622007-08-15 14:28:22 +0000265
266
267.. function:: isroutine(object)
268
269 Return true if the object is a user-defined or built-in function or method.
270
Georg Brandl39cadc32010-10-15 16:53:24 +0000271
Christian Heimesbe5b30b2008-03-03 19:18:51 +0000272.. function:: isabstract(object)
273
274 Return true if the object is an abstract base class.
275
Georg Brandl116aa622007-08-15 14:28:22 +0000276
277.. function:: ismethoddescriptor(object)
278
Georg Brandl39cadc32010-10-15 16:53:24 +0000279 Return true if the object is a method descriptor, but not if
280 :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin`
281 are true.
Georg Brandl116aa622007-08-15 14:28:22 +0000282
Georg Brandle6bcc912008-05-12 18:05:20 +0000283 This, for example, is true of ``int.__add__``. An object passing this test
284 has a :attr:`__get__` attribute but not a :attr:`__set__` attribute, but
285 beyond that the set of attributes varies. :attr:`__name__` is usually
286 sensible, and :attr:`__doc__` often is.
Georg Brandl116aa622007-08-15 14:28:22 +0000287
Georg Brandl9afde1c2007-11-01 20:32:30 +0000288 Methods implemented via descriptors that also pass one of the other tests
289 return false from the :func:`ismethoddescriptor` test, simply because the
290 other tests promise more -- you can, e.g., count on having the
Christian Heimesff737952007-11-27 10:40:20 +0000291 :attr:`__func__` attribute (etc) when an object passes :func:`ismethod`.
Georg Brandl116aa622007-08-15 14:28:22 +0000292
293
294.. function:: isdatadescriptor(object)
295
296 Return true if the object is a data descriptor.
297
Georg Brandl9afde1c2007-11-01 20:32:30 +0000298 Data descriptors have both a :attr:`__get__` and a :attr:`__set__` attribute.
299 Examples are properties (defined in Python), getsets, and members. The
300 latter two are defined in C and there are more specific tests available for
301 those types, which is robust across Python implementations. Typically, data
302 descriptors will also have :attr:`__name__` and :attr:`__doc__` attributes
303 (properties, getsets, and members have both of these attributes), but this is
304 not guaranteed.
Georg Brandl116aa622007-08-15 14:28:22 +0000305
Georg Brandl116aa622007-08-15 14:28:22 +0000306
307.. function:: isgetsetdescriptor(object)
308
309 Return true if the object is a getset descriptor.
310
Georg Brandl495f7b52009-10-27 15:28:25 +0000311 .. impl-detail::
312
313 getsets are attributes defined in extension modules via
Georg Brandl60203b42010-10-06 10:11:56 +0000314 :c:type:`PyGetSetDef` structures. For Python implementations without such
Georg Brandl495f7b52009-10-27 15:28:25 +0000315 types, this method will always return ``False``.
Georg Brandl116aa622007-08-15 14:28:22 +0000316
Georg Brandl116aa622007-08-15 14:28:22 +0000317
318.. function:: ismemberdescriptor(object)
319
320 Return true if the object is a member descriptor.
321
Georg Brandl495f7b52009-10-27 15:28:25 +0000322 .. impl-detail::
323
324 Member descriptors are attributes defined in extension modules via
Georg Brandl60203b42010-10-06 10:11:56 +0000325 :c:type:`PyMemberDef` structures. For Python implementations without such
Georg Brandl495f7b52009-10-27 15:28:25 +0000326 types, this method will always return ``False``.
Georg Brandl116aa622007-08-15 14:28:22 +0000327
Georg Brandl116aa622007-08-15 14:28:22 +0000328
329.. _inspect-source:
330
331Retrieving source code
332----------------------
333
Georg Brandl116aa622007-08-15 14:28:22 +0000334.. function:: getdoc(object)
335
Georg Brandl0c77a822008-06-10 16:37:50 +0000336 Get the documentation string for an object, cleaned up with :func:`cleandoc`.
Georg Brandl116aa622007-08-15 14:28:22 +0000337
338
339.. function:: getcomments(object)
340
341 Return in a single string any lines of comments immediately preceding the
342 object's source code (for a class, function, or method), or at the top of the
343 Python source file (if the object is a module).
344
345
346.. function:: getfile(object)
347
348 Return the name of the (text or binary) file in which an object was defined.
349 This will fail with a :exc:`TypeError` if the object is a built-in module,
350 class, or function.
351
352
353.. function:: getmodule(object)
354
355 Try to guess which module an object was defined in.
356
357
358.. function:: getsourcefile(object)
359
360 Return the name of the Python source file in which an object was defined. This
361 will fail with a :exc:`TypeError` if the object is a built-in module, class, or
362 function.
363
364
365.. function:: getsourcelines(object)
366
367 Return a list of source lines and starting line number for an object. The
368 argument may be a module, class, method, function, traceback, frame, or code
369 object. The source code is returned as a list of the lines corresponding to the
370 object and the line number indicates where in the original source file the first
Antoine Pitrou62ab10a2011-10-12 20:10:51 +0200371 line of code was found. An :exc:`OSError` is raised if the source code cannot
Georg Brandl116aa622007-08-15 14:28:22 +0000372 be retrieved.
373
Antoine Pitrou62ab10a2011-10-12 20:10:51 +0200374 .. versionchanged:: 3.3
375 :exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the
376 former.
377
Georg Brandl116aa622007-08-15 14:28:22 +0000378
379.. function:: getsource(object)
380
381 Return the text of the source code for an object. The argument may be a module,
382 class, method, function, traceback, frame, or code object. The source code is
Antoine Pitrou62ab10a2011-10-12 20:10:51 +0200383 returned as a single string. An :exc:`OSError` is raised if the source code
Georg Brandl116aa622007-08-15 14:28:22 +0000384 cannot be retrieved.
385
Antoine Pitrou62ab10a2011-10-12 20:10:51 +0200386 .. versionchanged:: 3.3
387 :exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the
388 former.
389
Georg Brandl116aa622007-08-15 14:28:22 +0000390
Georg Brandl0c77a822008-06-10 16:37:50 +0000391.. function:: cleandoc(doc)
392
393 Clean up indentation from docstrings that are indented to line up with blocks
394 of code. Any whitespace that can be uniformly removed from the second line
395 onwards is removed. Also, all tabs are expanded to spaces.
396
Georg Brandl0c77a822008-06-10 16:37:50 +0000397
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300398.. _inspect-signature-object:
399
400Introspecting callables with Signature Object
401---------------------------------------------
402
403Signature object represents the call signature of a callable object and its
404return annotation. To get a Signature object use the :func:`signature`
405function.
406
407
408.. versionadded:: 3.3
409
410.. seealso::
411
412 :pep:`362` - Function Signature Object.
413 The detailed specification, implementation details and examples.
414
415
416.. function:: signature(callable)
417
418 Returns a :class:`Signature` object for the given ``callable``::
419
420 >>> from inspect import signature
421 >>> def foo(a, *, b:int, **kwargs):
422 ... pass
423
424 >>> sig = signature(foo)
425
426 >>> str(sig)
427 '(a, *, b:int, **kwargs)'
428
429 >>> str(sig.parameters['b'])
430 'b:int'
431
432 >>> sig.parameters['b'].annotation
433 <class 'int'>
434
435 Accepts a wide range of python callables, from plain functions and classes
436 to :func:`functools.partial` objects.
437
438 .. note::
439
440 Some callables may not be introspectable in certain implementations
441 of Python. For example, in CPython, built-in functions defined in C
442 provide no metadata about their arguments.
443
444
445.. class:: Signature
446
447 A Signature object represents the call signature of a function and its
448 return annotation. For each parameter accepted by the function it
449 stores a :class:`Parameter` object in its :attr:`parameters` collection.
450
451 Signature objects are *immutable*. Use :meth:`Signature.replace` to make
452 a modified copy.
453
454 .. attribute:: Signature.empty
455
456 A special class-level marker to specify absence of a return annotation.
457
458 .. attribute:: Signature.parameters
459
460 An ordered mapping of parameters' names to the corresponding
461 :class:`Parameter` objects.
462
463 .. attribute:: Signature.return_annotation
464
465 The "return" annotation for the callable. If the callable has
466 no "return" annotation, this attribute is set to
467 :attr:`Signature.empty`.
468
469 .. method:: Signature.bind(*args, **kwargs)
470
471 Creates a mapping from positional and keyword arguments to parameters.
472 Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match
473 the signature, or raises a :exc:`TypeError`.
474
475 .. method:: Signature.bind_partial(*args, **kwargs)
476
477 Works the same way as :meth:`Signature.bind`, but allows the
478 omission of some required arguments (mimics :func:`functools.partial`
479 behavior.) Returns :class:`BoundArguments`, or raises a :exc:`TypeError`
480 if the passed arguments do not match the signature.
481
482 .. method:: Signature.replace([parameters], *, [return_annotation])
483
484 Creates a new Signature instance based on the instance replace was
485 invoked on. It is possible to pass different ``parameters`` and/or
486 ``return_annotation`` to override the corresponding properties of
487 the base signature. To remove return_annotation from the copied
488 Signature, pass in :attr:`Signature.empty`.
489
490 ::
491
492 >>> def test(a, b):
493 ... pass
494 >>> sig = signature(test)
495 >>> new_sig = sig.replace(return_annotation="new return anno")
496 >>> str(new_sig)
497 "(a, b) -> 'new return anno'"
498
499
500
501.. class:: Parameter
502
503 Parameter objects are *immutable*. Instead of modifying a Parameter object,
504 you can use :meth:`Parameter.replace` to create a modified copy.
505
506 .. attribute:: Parameter.empty
507
508 A special class-level marker to specify absence of default
509 values and annotations.
510
511 .. attribute:: Parameter.name
512
513 The name of the parameter as a string. Must be a valid python identifier
514 name (with the exception of ``POSITIONAL_ONLY`` parameters, which can
515 have it set to ``None``.)
516
517 .. attribute:: Parameter.default
518
519 The default value for the parameter. If the parameter has no default
520 value, this attribute is set to :attr:`Parameter.empty`.
521
522 .. attribute:: Parameter.annotation
523
524 The annotation for the parameter. If the parameter has no annotation,
525 this attribute is set to :attr:`Parameter.empty`.
526
527 .. attribute:: Parameter.kind
528
529 Describes how argument values are bound to the parameter.
530 Possible values (accessible via :class:`Parameter`, like
531 ``Parameter.KEYWORD_ONLY``):
532
533 +------------------------+----------------------------------------------+
534 | Name | Meaning |
535 +========================+==============================================+
536 | *POSITIONAL_ONLY* | Value must be supplied as a positional |
537 | | argument. |
538 | | |
539 | | Python has no explicit syntax for defining |
540 | | positional-only parameters, but many built-in|
541 | | and extension module functions (especially |
542 | | those that accept only one or two parameters)|
543 | | accept them. |
544 +------------------------+----------------------------------------------+
545 | *POSITIONAL_OR_KEYWORD*| Value may be supplied as either a keyword or |
546 | | positional argument (this is the standard |
547 | | binding behaviour for functions implemented |
548 | | in Python.) |
549 +------------------------+----------------------------------------------+
550 | *VAR_POSITIONAL* | A tuple of positional arguments that aren't |
551 | | bound to any other parameter. This |
552 | | corresponds to a ``*args`` parameter in a |
553 | | Python function definition. |
554 +------------------------+----------------------------------------------+
555 | *KEYWORD_ONLY* | Value must be supplied as a keyword argument.|
556 | | Keyword only parameters are those which |
557 | | appear after a ``*`` or ``*args`` entry in a |
558 | | Python function definition. |
559 +------------------------+----------------------------------------------+
560 | *VAR_KEYWORD* | A dict of keyword arguments that aren't bound|
561 | | to any other parameter. This corresponds to a|
562 | | ``**kwargs`` parameter in a Python function |
563 | | definition. |
564 +------------------------+----------------------------------------------+
565
566 Print all keyword-only arguments without default values::
567
568 >>> def foo(a, b, *, c, d=10):
569 ... pass
570
571 >>> sig = signature(foo)
572 >>> for param in sig.parameters.values():
573 ... if (param.kind == param.KEYWORD_ONLY and
574 ... param.default is param.empty):
575 ... print('Parameter:', param)
576 Parameter: c
577
578 .. method:: Parameter.replace(*, [name], [kind], [default], [annotation])
579
580 Creates a new Parameter instance based on the instance replaced was
581 invoked on. To override a :class:`Parameter` attribute, pass the
582 corresponding argument. To remove a default value or/and an annotation
583 from a Parameter, pass :attr:`Parameter.empty`.
584
585 ::
586
587 >>> from inspect import Parameter
588 >>> param = Parameter('foo', Parameter.KEYWORD_ONLY, default=42)
589 >>> str(param)
590 'foo=42'
591
592 >>> str(param.replace()) # Will create a shallow copy of 'param'
593 'foo=42'
594
595 >>> str(param.replace(default=Parameter.empty, annotation='spam'))
596 "foo:'spam'"
597
598
599.. class:: BoundArguments
600
601 Result of a :meth:`Signature.bind` or :meth:`Signature.bind_partial` call.
602 Holds the mapping of arguments to the function's parameters.
603
604 .. attribute:: BoundArguments.arguments
605
606 An ordered, mutable mapping (:class:`collections.OrderedDict`) of
607 parameters' names to arguments' values. Contains only explicitly
608 bound arguments. Changes in :attr:`arguments` will reflect in
609 :attr:`args` and :attr:`kwargs`.
610
611 Should be used in conjunction with :attr:`Signature.parameters` for
612 any arguments processing purposes.
613
614 .. note::
615
616 Arguments for which :meth:`Signature.bind` or
617 :meth:`Signature.bind_partial` relied on a default value are skipped.
618 However, if needed, it's easy to include them
619
620 ::
621
622 >>> def foo(a, b=10):
623 ... pass
624
625 >>> sig = signature(foo)
626 >>> ba = sig.bind(5)
627
628 >>> ba.args, ba.kwargs
629 ((5,), {})
630
631 >>> for param in sig.parameters.values():
632 ... if param.name not in ba.arguments:
633 ... ba.arguments[param.name] = param.default
634
635 >>> ba.args, ba.kwargs
636 ((5, 10), {})
637
638
639 .. attribute:: BoundArguments.args
640
641 Tuple of positional arguments values. Dynamically computed
642 from the :attr:`arguments` attribute.
643
644 .. attribute:: BoundArguments.kwargs
645
646 Dict of keyword arguments values. Dynamically computed
647 from the :attr:`arguments` attribute.
648
649 :attr:`args` and :attr:`kwargs` properties can be used to invoke functions::
650
651 def test(a, *, b):
652 ...
653
654 sig = signature(test)
655 ba = sig.bind(10, b=20)
656 test(*ba.args, **ba.kwargs)
657
658
Georg Brandl116aa622007-08-15 14:28:22 +0000659.. _inspect-classes-functions:
660
661Classes and functions
662---------------------
663
Georg Brandl3dd33882009-06-01 17:35:27 +0000664.. function:: getclasstree(classes, unique=False)
Georg Brandl116aa622007-08-15 14:28:22 +0000665
666 Arrange the given list of classes into a hierarchy of nested lists. Where a
667 nested list appears, it contains classes derived from the class whose entry
668 immediately precedes the list. Each entry is a 2-tuple containing a class and a
669 tuple of its base classes. If the *unique* argument is true, exactly one entry
670 appears in the returned structure for each class in the given list. Otherwise,
671 classes using multiple inheritance and their descendants will appear multiple
672 times.
673
674
675.. function:: getargspec(func)
676
Georg Brandl82402752010-01-09 09:48:46 +0000677 Get the names and default values of a Python function's arguments. A
Georg Brandlb30f3302011-01-06 09:23:56 +0000678 :term:`named tuple` ``ArgSpec(args, varargs, keywords, defaults)`` is
679 returned. *args* is a list of the argument names. *varargs* and *keywords*
680 are the names of the ``*`` and ``**`` arguments or ``None``. *defaults* is a
681 tuple of default argument values or None if there are no default arguments;
682 if this tuple has *n* elements, they correspond to the last *n* elements
683 listed in *args*.
Georg Brandl138bcb52007-09-12 19:04:21 +0000684
685 .. deprecated:: 3.0
686 Use :func:`getfullargspec` instead, which provides information about
Benjamin Peterson3e8e9cc2008-11-12 21:26:46 +0000687 keyword-only arguments and annotations.
Georg Brandl138bcb52007-09-12 19:04:21 +0000688
689
690.. function:: getfullargspec(func)
691
Georg Brandl82402752010-01-09 09:48:46 +0000692 Get the names and default values of a Python function's arguments. A
693 :term:`named tuple` is returned:
Georg Brandl138bcb52007-09-12 19:04:21 +0000694
Georg Brandl3dd33882009-06-01 17:35:27 +0000695 ``FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults,
696 annotations)``
Georg Brandl138bcb52007-09-12 19:04:21 +0000697
698 *args* is a list of the argument names. *varargs* and *varkw* are the names
699 of the ``*`` and ``**`` arguments or ``None``. *defaults* is an n-tuple of
700 the default values of the last n arguments. *kwonlyargs* is a list of
701 keyword-only argument names. *kwonlydefaults* is a dictionary mapping names
702 from kwonlyargs to defaults. *annotations* is a dictionary mapping argument
703 names to annotations.
704
705 The first four items in the tuple correspond to :func:`getargspec`.
Georg Brandl116aa622007-08-15 14:28:22 +0000706
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300707 .. note::
708 Consider using the new :ref:`Signature Object <inspect-signature-object>`
709 interface, which provides a better way of introspecting functions.
710
Georg Brandl116aa622007-08-15 14:28:22 +0000711
712.. function:: getargvalues(frame)
713
Georg Brandl3dd33882009-06-01 17:35:27 +0000714 Get information about arguments passed into a particular frame. A
715 :term:`named tuple` ``ArgInfo(args, varargs, keywords, locals)`` is
Georg Brandlb30f3302011-01-06 09:23:56 +0000716 returned. *args* is a list of the argument names. *varargs* and *keywords*
717 are the names of the ``*`` and ``**`` arguments or ``None``. *locals* is the
Georg Brandlc1c4bf82010-10-15 16:07:41 +0000718 locals dictionary of the given frame.
Georg Brandl116aa622007-08-15 14:28:22 +0000719
720
Michael Foord3af125a2012-04-21 18:22:28 +0100721.. function:: formatargspec(args[, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations, formatarg, formatvarargs, formatvarkw, formatvalue, formatreturns, formatannotations])
Georg Brandl116aa622007-08-15 14:28:22 +0000722
Michael Foord3af125a2012-04-21 18:22:28 +0100723 Format a pretty argument spec from the values returned by
724 :func:`getargspec` or :func:`getfullargspec`.
725
726 The first seven arguments are (``args``, ``varargs``, ``varkw``,
727 ``defaults``, ``kwonlyargs``, ``kwonlydefaults``, ``annotations``). The
728 other five arguments are the corresponding optional formatting functions
729 that are called to turn names and values into strings. The last argument
730 is an optional function to format the sequence of arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000731
732
Georg Brandlc1c4bf82010-10-15 16:07:41 +0000733.. function:: formatargvalues(args[, varargs, varkw, locals, formatarg, formatvarargs, formatvarkw, formatvalue])
Georg Brandl116aa622007-08-15 14:28:22 +0000734
735 Format a pretty argument spec from the four values returned by
736 :func:`getargvalues`. The format\* arguments are the corresponding optional
737 formatting functions that are called to turn names and values into strings.
738
739
740.. function:: getmro(cls)
741
742 Return a tuple of class cls's base classes, including cls, in method resolution
743 order. No class appears more than once in this tuple. Note that the method
744 resolution order depends on cls's type. Unless a very peculiar user-defined
745 metatype is in use, cls will be the first element of the tuple.
746
747
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000748.. function:: getcallargs(func[, *args][, **kwds])
749
750 Bind the *args* and *kwds* to the argument names of the Python function or
751 method *func*, as if it was called with them. For bound methods, bind also the
752 first argument (typically named ``self``) to the associated instance. A dict
753 is returned, mapping the argument names (including the names of the ``*`` and
754 ``**`` arguments, if any) to their values from *args* and *kwds*. In case of
755 invoking *func* incorrectly, i.e. whenever ``func(*args, **kwds)`` would raise
756 an exception because of incompatible signature, an exception of the same type
757 and the same or similar message is raised. For example::
758
759 >>> from inspect import getcallargs
760 >>> def f(a, b=1, *pos, **named):
761 ... pass
Andrew Svetlove939f382012-08-09 13:25:32 +0300762 >>> getcallargs(f, 1, 2, 3) == {'a': 1, 'named': {}, 'b': 2, 'pos': (3,)}
763 True
764 >>> getcallargs(f, a=2, x=4) == {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': ()}
765 True
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000766 >>> getcallargs(f)
767 Traceback (most recent call last):
768 ...
Andrew Svetlove939f382012-08-09 13:25:32 +0300769 TypeError: f() missing 1 required positional argument: 'a'
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000770
771 .. versionadded:: 3.2
772
Andrew Svetlov4e48bf92012-08-13 17:10:28 +0300773 .. note::
774 Consider using the new :meth:`Signature.bind` instead.
775
Benjamin Peterson25cd7eb2010-03-30 18:42:32 +0000776
Nick Coghlan2f92e542012-06-23 19:39:55 +1000777.. function:: getclosurevars(func)
778
779 Get the mapping of external name references in a Python function or
780 method *func* to their current values. A
781 :term:`named tuple` ``ClosureVars(nonlocals, globals, builtins, unbound)``
782 is returned. *nonlocals* maps referenced names to lexical closure
783 variables, *globals* to the function's module globals and *builtins* to
784 the builtins visible from the function body. *unbound* is the set of names
785 referenced in the function that could not be resolved at all given the
786 current module globals and builtins.
787
788 :exc:`TypeError` is raised if *func* is not a Python function or method.
789
790 .. versionadded:: 3.3
791
792
Georg Brandl116aa622007-08-15 14:28:22 +0000793.. _inspect-stack:
794
795The interpreter stack
796---------------------
797
798When the following functions return "frame records," each record is a tuple of
799six items: the frame object, the filename, the line number of the current line,
800the function name, a list of lines of context from the source code, and the
801index of the current line within that list.
802
Georg Brandle720c0a2009-04-27 16:20:50 +0000803.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000804
805 Keeping references to frame objects, as found in the first element of the frame
806 records these functions return, can cause your program to create reference
807 cycles. Once a reference cycle has been created, the lifespan of all objects
808 which can be accessed from the objects which form the cycle can become much
809 longer even if Python's optional cycle detector is enabled. If such cycles must
810 be created, it is important to ensure they are explicitly broken to avoid the
811 delayed destruction of objects and increased memory consumption which occurs.
812
813 Though the cycle detector will catch these, destruction of the frames (and local
814 variables) can be made deterministic by removing the cycle in a
815 :keyword:`finally` clause. This is also important if the cycle detector was
816 disabled when Python was compiled or using :func:`gc.disable`. For example::
817
818 def handle_stackframe_without_leak():
819 frame = inspect.currentframe()
820 try:
821 # do something with the frame
822 finally:
823 del frame
824
825The optional *context* argument supported by most of these functions specifies
826the number of lines of context to return, which are centered around the current
827line.
828
829
Georg Brandl3dd33882009-06-01 17:35:27 +0000830.. function:: getframeinfo(frame, context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000831
Georg Brandl48310cd2009-01-03 21:18:54 +0000832 Get information about a frame or traceback object. A :term:`named tuple`
Christian Heimes25bb7832008-01-11 16:17:00 +0000833 ``Traceback(filename, lineno, function, code_context, index)`` is returned.
Georg Brandl116aa622007-08-15 14:28:22 +0000834
835
Georg Brandl3dd33882009-06-01 17:35:27 +0000836.. function:: getouterframes(frame, context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000837
838 Get a list of frame records for a frame and all outer frames. These frames
839 represent the calls that lead to the creation of *frame*. The first entry in the
840 returned list represents *frame*; the last entry represents the outermost call
841 on *frame*'s stack.
842
843
Georg Brandl3dd33882009-06-01 17:35:27 +0000844.. function:: getinnerframes(traceback, context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000845
846 Get a list of frame records for a traceback's frame and all inner frames. These
847 frames represent calls made as a consequence of *frame*. The first entry in the
848 list represents *traceback*; the last entry represents where the exception was
849 raised.
850
851
852.. function:: currentframe()
853
854 Return the frame object for the caller's stack frame.
855
Georg Brandl495f7b52009-10-27 15:28:25 +0000856 .. impl-detail::
857
858 This function relies on Python stack frame support in the interpreter,
859 which isn't guaranteed to exist in all implementations of Python. If
860 running in an implementation without Python stack frame support this
861 function returns ``None``.
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000862
Georg Brandl116aa622007-08-15 14:28:22 +0000863
Georg Brandl3dd33882009-06-01 17:35:27 +0000864.. function:: stack(context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000865
866 Return a list of frame records for the caller's stack. The first entry in the
867 returned list represents the caller; the last entry represents the outermost
868 call on the stack.
869
870
Georg Brandl3dd33882009-06-01 17:35:27 +0000871.. function:: trace(context=1)
Georg Brandl116aa622007-08-15 14:28:22 +0000872
873 Return a list of frame records for the stack between the current frame and the
874 frame in which an exception currently being handled was raised in. The first
875 entry in the list represents the caller; the last entry represents where the
876 exception was raised.
877
Michael Foord95fc51d2010-11-20 15:07:30 +0000878
879Fetching attributes statically
880------------------------------
881
882Both :func:`getattr` and :func:`hasattr` can trigger code execution when
883fetching or checking for the existence of attributes. Descriptors, like
884properties, will be invoked and :meth:`__getattr__` and :meth:`__getattribute__`
885may be called.
886
887For cases where you want passive introspection, like documentation tools, this
Éric Araujo941afed2011-09-01 02:47:34 +0200888can be inconvenient. :func:`getattr_static` has the same signature as :func:`getattr`
Michael Foord95fc51d2010-11-20 15:07:30 +0000889but avoids executing code when it fetches attributes.
890
891.. function:: getattr_static(obj, attr, default=None)
892
893 Retrieve attributes without triggering dynamic lookup via the
Éric Araujo941afed2011-09-01 02:47:34 +0200894 descriptor protocol, :meth:`__getattr__` or :meth:`__getattribute__`.
Michael Foord95fc51d2010-11-20 15:07:30 +0000895
896 Note: this function may not be able to retrieve all attributes
897 that getattr can fetch (like dynamically created attributes)
898 and may find attributes that getattr can't (like descriptors
899 that raise AttributeError). It can also return descriptors objects
900 instead of instance members.
901
Éric Araujo941afed2011-09-01 02:47:34 +0200902 If the instance :attr:`__dict__` is shadowed by another member (for example a
Michael Foorddcebe0f2011-03-15 19:20:44 -0400903 property) then this function will be unable to find instance members.
Nick Coghlan2dad5ca2010-11-21 03:55:53 +0000904
Michael Foorddcebe0f2011-03-15 19:20:44 -0400905 .. versionadded:: 3.2
Michael Foord95fc51d2010-11-20 15:07:30 +0000906
Éric Araujo941afed2011-09-01 02:47:34 +0200907:func:`getattr_static` does not resolve descriptors, for example slot descriptors or
Michael Foorde5162652010-11-20 16:40:44 +0000908getset descriptors on objects implemented in C. The descriptor object
Michael Foord95fc51d2010-11-20 15:07:30 +0000909is returned instead of the underlying attribute.
910
911You can handle these with code like the following. Note that
912for arbitrary getset descriptors invoking these may trigger
913code execution::
914
915 # example code for resolving the builtin descriptor types
Éric Araujo28053fb2010-11-22 03:09:19 +0000916 class _foo:
Michael Foord95fc51d2010-11-20 15:07:30 +0000917 __slots__ = ['foo']
918
919 slot_descriptor = type(_foo.foo)
920 getset_descriptor = type(type(open(__file__)).name)
921 wrapper_descriptor = type(str.__dict__['__add__'])
922 descriptor_types = (slot_descriptor, getset_descriptor, wrapper_descriptor)
923
924 result = getattr_static(some_object, 'foo')
925 if type(result) in descriptor_types:
926 try:
927 result = result.__get__()
928 except AttributeError:
929 # descriptors can raise AttributeError to
930 # indicate there is no underlying value
931 # in which case the descriptor itself will
932 # have to do
933 pass
Nick Coghlane0f04652010-11-21 03:44:04 +0000934
Nick Coghlan2dad5ca2010-11-21 03:55:53 +0000935
Nick Coghlane0f04652010-11-21 03:44:04 +0000936Current State of a Generator
937----------------------------
938
939When implementing coroutine schedulers and for other advanced uses of
940generators, it is useful to determine whether a generator is currently
941executing, is waiting to start or resume or execution, or has already
Raymond Hettinger48f3bd32010-12-16 00:30:53 +0000942terminated. :func:`getgeneratorstate` allows the current state of a
Nick Coghlane0f04652010-11-21 03:44:04 +0000943generator to be determined easily.
944
945.. function:: getgeneratorstate(generator)
946
Raymond Hettinger48f3bd32010-12-16 00:30:53 +0000947 Get current state of a generator-iterator.
Nick Coghlane0f04652010-11-21 03:44:04 +0000948
Raymond Hettinger48f3bd32010-12-16 00:30:53 +0000949 Possible states are:
Raymond Hettingera275c982011-01-20 04:03:19 +0000950 * GEN_CREATED: Waiting to start execution.
951 * GEN_RUNNING: Currently being executed by the interpreter.
952 * GEN_SUSPENDED: Currently suspended at a yield expression.
953 * GEN_CLOSED: Execution has completed.
Nick Coghlane0f04652010-11-21 03:44:04 +0000954
Nick Coghlan2dad5ca2010-11-21 03:55:53 +0000955 .. versionadded:: 3.2
Nick Coghlan04e2e3f2012-06-23 19:52:05 +1000956
957The current internal state of the generator can also be queried. This is
958mostly useful for testing purposes, to ensure that internal state is being
959updated as expected:
960
961.. function:: getgeneratorlocals(generator)
962
963 Get the mapping of live local variables in *generator* to their current
964 values. A dictionary is returned that maps from variable names to values.
965 This is the equivalent of calling :func:`locals` in the body of the
966 generator, and all the same caveats apply.
967
968 If *generator* is a :term:`generator` with no currently associated frame,
969 then an empty dictionary is returned. :exc:`TypeError` is raised if
970 *generator* is not a Python generator object.
971
972 .. impl-detail::
973
974 This function relies on the generator exposing a Python stack frame
975 for introspection, which isn't guaranteed to be the case in all
976 implementations of Python. In such cases, this function will always
977 return an empty dictionary.
978
979 .. versionadded:: 3.3