Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :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 Hettinger | 469271d | 2011-01-27 20:38:46 +0000 | [diff] [blame] | 9 | **Source code:** :source:`Lib/inspect.py` |
| 10 | |
| 11 | -------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 12 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 13 | The :mod:`inspect` module provides several useful functions to help get |
| 14 | information about live objects such as modules, classes, methods, functions, |
| 15 | tracebacks, frame objects, and code objects. For example, it can help you |
| 16 | examine the contents of a class, retrieve the source code of a method, extract |
| 17 | and format the argument list for a function, or get all the information you need |
| 18 | to display a detailed traceback. |
| 19 | |
| 20 | There are four main kinds of services provided by this module: type checking, |
| 21 | getting source code, inspecting classes and functions, and examining the |
| 22 | interpreter stack. |
| 23 | |
| 24 | |
| 25 | .. _inspect-types: |
| 26 | |
| 27 | Types and members |
| 28 | ----------------- |
| 29 | |
| 30 | The :func:`getmembers` function retrieves the members of an object such as a |
Christian Heimes | 7864476 | 2008-03-04 23:39:23 +0000 | [diff] [blame] | 31 | class or module. The sixteen functions whose names begin with "is" are mainly |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 32 | provided as convenient choices for the second argument to :func:`getmembers`. |
| 33 | They also help you determine when you can expect to find the following special |
| 34 | attributes: |
| 35 | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 36 | +-----------+-----------------+---------------------------+ |
| 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 Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 54 | | | __func__ | function object | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 55 | | | | containing implementation | |
| 56 | | | | of method | |
| 57 | +-----------+-----------------+---------------------------+ |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 58 | | | __self__ | instance to which this | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 59 | | | | 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 Brandl | 9afde1c | 2007-11-01 20:32:30 +0000 | [diff] [blame] | 69 | | | | :term:`bytecode` | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 70 | +-----------+-----------------+---------------------------+ |
| 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 Brandl | c4a55fc | 2010-02-06 18:46:57 +0000 | [diff] [blame] | 93 | | | f_builtins | builtins namespace seen | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 94 | | | | by this frame | |
| 95 | +-----------+-----------------+---------------------------+ |
| 96 | | | f_code | code object being | |
| 97 | | | | executed in this frame | |
| 98 | +-----------+-----------------+---------------------------+ |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 99 | | | 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 Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 166 | |
| 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 Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 174 | .. 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 Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 179 | |
| 180 | .. function:: getmoduleinfo(path) |
| 181 | |
Georg Brandl | b30f330 | 2011-01-06 09:23:56 +0000 | [diff] [blame] | 182 | 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 Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 192 | |
| 193 | |
| 194 | .. function:: getmodulename(path) |
| 195 | |
| 196 | Return the name of the module named by the file *path*, without including the |
| 197 | names of enclosing packages. This uses the same algorithm as the interpreter |
| 198 | uses when searching for modules. If the name cannot be matched according to the |
| 199 | interpreter's rules, ``None`` is returned. |
| 200 | |
| 201 | |
| 202 | .. function:: ismodule(object) |
| 203 | |
| 204 | Return true if the object is a module. |
| 205 | |
| 206 | |
| 207 | .. function:: isclass(object) |
| 208 | |
Georg Brandl | 39cadc3 | 2010-10-15 16:53:24 +0000 | [diff] [blame] | 209 | Return true if the object is a class, whether built-in or created in Python |
| 210 | code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 211 | |
| 212 | |
| 213 | .. function:: ismethod(object) |
| 214 | |
Georg Brandl | 39cadc3 | 2010-10-15 16:53:24 +0000 | [diff] [blame] | 215 | Return true if the object is a bound method written in Python. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 216 | |
| 217 | |
| 218 | .. function:: isfunction(object) |
| 219 | |
Georg Brandl | 39cadc3 | 2010-10-15 16:53:24 +0000 | [diff] [blame] | 220 | Return true if the object is a Python function, which includes functions |
| 221 | created by a :term:`lambda` expression. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 222 | |
| 223 | |
Christian Heimes | 7131fd9 | 2008-02-19 14:21:46 +0000 | [diff] [blame] | 224 | .. function:: isgeneratorfunction(object) |
| 225 | |
| 226 | Return true if the object is a Python generator function. |
| 227 | |
| 228 | |
| 229 | .. function:: isgenerator(object) |
| 230 | |
| 231 | Return true if the object is a generator. |
| 232 | |
| 233 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 234 | .. function:: istraceback(object) |
| 235 | |
| 236 | Return true if the object is a traceback. |
| 237 | |
| 238 | |
| 239 | .. function:: isframe(object) |
| 240 | |
| 241 | Return true if the object is a frame. |
| 242 | |
| 243 | |
| 244 | .. function:: iscode(object) |
| 245 | |
| 246 | Return true if the object is a code. |
| 247 | |
| 248 | |
| 249 | .. function:: isbuiltin(object) |
| 250 | |
Georg Brandl | 39cadc3 | 2010-10-15 16:53:24 +0000 | [diff] [blame] | 251 | Return true if the object is a built-in function or a bound built-in method. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 252 | |
| 253 | |
| 254 | .. function:: isroutine(object) |
| 255 | |
| 256 | Return true if the object is a user-defined or built-in function or method. |
| 257 | |
Georg Brandl | 39cadc3 | 2010-10-15 16:53:24 +0000 | [diff] [blame] | 258 | |
Christian Heimes | be5b30b | 2008-03-03 19:18:51 +0000 | [diff] [blame] | 259 | .. function:: isabstract(object) |
| 260 | |
| 261 | Return true if the object is an abstract base class. |
| 262 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 263 | |
| 264 | .. function:: ismethoddescriptor(object) |
| 265 | |
Georg Brandl | 39cadc3 | 2010-10-15 16:53:24 +0000 | [diff] [blame] | 266 | Return true if the object is a method descriptor, but not if |
| 267 | :func:`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin` |
| 268 | are true. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 269 | |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 270 | This, for example, is true of ``int.__add__``. An object passing this test |
| 271 | has a :attr:`__get__` attribute but not a :attr:`__set__` attribute, but |
| 272 | beyond that the set of attributes varies. :attr:`__name__` is usually |
| 273 | sensible, and :attr:`__doc__` often is. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 274 | |
Georg Brandl | 9afde1c | 2007-11-01 20:32:30 +0000 | [diff] [blame] | 275 | Methods implemented via descriptors that also pass one of the other tests |
| 276 | return false from the :func:`ismethoddescriptor` test, simply because the |
| 277 | other tests promise more -- you can, e.g., count on having the |
Christian Heimes | ff73795 | 2007-11-27 10:40:20 +0000 | [diff] [blame] | 278 | :attr:`__func__` attribute (etc) when an object passes :func:`ismethod`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 279 | |
| 280 | |
| 281 | .. function:: isdatadescriptor(object) |
| 282 | |
| 283 | Return true if the object is a data descriptor. |
| 284 | |
Georg Brandl | 9afde1c | 2007-11-01 20:32:30 +0000 | [diff] [blame] | 285 | Data descriptors have both a :attr:`__get__` and a :attr:`__set__` attribute. |
| 286 | Examples are properties (defined in Python), getsets, and members. The |
| 287 | latter two are defined in C and there are more specific tests available for |
| 288 | those types, which is robust across Python implementations. Typically, data |
| 289 | descriptors will also have :attr:`__name__` and :attr:`__doc__` attributes |
| 290 | (properties, getsets, and members have both of these attributes), but this is |
| 291 | not guaranteed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 292 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 293 | |
| 294 | .. function:: isgetsetdescriptor(object) |
| 295 | |
| 296 | Return true if the object is a getset descriptor. |
| 297 | |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 298 | .. impl-detail:: |
| 299 | |
| 300 | getsets are attributes defined in extension modules via |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 301 | :c:type:`PyGetSetDef` structures. For Python implementations without such |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 302 | types, this method will always return ``False``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 303 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 304 | |
| 305 | .. function:: ismemberdescriptor(object) |
| 306 | |
| 307 | Return true if the object is a member descriptor. |
| 308 | |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 309 | .. impl-detail:: |
| 310 | |
| 311 | Member descriptors are attributes defined in extension modules via |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 312 | :c:type:`PyMemberDef` structures. For Python implementations without such |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 313 | types, this method will always return ``False``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 314 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 315 | |
| 316 | .. _inspect-source: |
| 317 | |
| 318 | Retrieving source code |
| 319 | ---------------------- |
| 320 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 321 | .. function:: getdoc(object) |
| 322 | |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 323 | Get the documentation string for an object, cleaned up with :func:`cleandoc`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 324 | |
| 325 | |
| 326 | .. function:: getcomments(object) |
| 327 | |
| 328 | Return in a single string any lines of comments immediately preceding the |
| 329 | object's source code (for a class, function, or method), or at the top of the |
| 330 | Python source file (if the object is a module). |
| 331 | |
| 332 | |
| 333 | .. function:: getfile(object) |
| 334 | |
| 335 | Return the name of the (text or binary) file in which an object was defined. |
| 336 | This will fail with a :exc:`TypeError` if the object is a built-in module, |
| 337 | class, or function. |
| 338 | |
| 339 | |
| 340 | .. function:: getmodule(object) |
| 341 | |
| 342 | Try to guess which module an object was defined in. |
| 343 | |
| 344 | |
| 345 | .. function:: getsourcefile(object) |
| 346 | |
| 347 | Return the name of the Python source file in which an object was defined. This |
| 348 | will fail with a :exc:`TypeError` if the object is a built-in module, class, or |
| 349 | function. |
| 350 | |
| 351 | |
| 352 | .. function:: getsourcelines(object) |
| 353 | |
| 354 | Return a list of source lines and starting line number for an object. The |
| 355 | argument may be a module, class, method, function, traceback, frame, or code |
| 356 | object. The source code is returned as a list of the lines corresponding to the |
| 357 | object and the line number indicates where in the original source file the first |
| 358 | line of code was found. An :exc:`IOError` is raised if the source code cannot |
| 359 | be retrieved. |
| 360 | |
| 361 | |
| 362 | .. function:: getsource(object) |
| 363 | |
| 364 | Return the text of the source code for an object. The argument may be a module, |
| 365 | class, method, function, traceback, frame, or code object. The source code is |
| 366 | returned as a single string. An :exc:`IOError` is raised if the source code |
| 367 | cannot be retrieved. |
| 368 | |
| 369 | |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 370 | .. function:: cleandoc(doc) |
| 371 | |
| 372 | Clean up indentation from docstrings that are indented to line up with blocks |
| 373 | of code. Any whitespace that can be uniformly removed from the second line |
| 374 | onwards is removed. Also, all tabs are expanded to spaces. |
| 375 | |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 376 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 377 | .. _inspect-classes-functions: |
| 378 | |
| 379 | Classes and functions |
| 380 | --------------------- |
| 381 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 382 | .. function:: getclasstree(classes, unique=False) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 383 | |
| 384 | Arrange the given list of classes into a hierarchy of nested lists. Where a |
| 385 | nested list appears, it contains classes derived from the class whose entry |
| 386 | immediately precedes the list. Each entry is a 2-tuple containing a class and a |
| 387 | tuple of its base classes. If the *unique* argument is true, exactly one entry |
| 388 | appears in the returned structure for each class in the given list. Otherwise, |
| 389 | classes using multiple inheritance and their descendants will appear multiple |
| 390 | times. |
| 391 | |
| 392 | |
| 393 | .. function:: getargspec(func) |
| 394 | |
Georg Brandl | 8240275 | 2010-01-09 09:48:46 +0000 | [diff] [blame] | 395 | Get the names and default values of a Python function's arguments. A |
Georg Brandl | b30f330 | 2011-01-06 09:23:56 +0000 | [diff] [blame] | 396 | :term:`named tuple` ``ArgSpec(args, varargs, keywords, defaults)`` is |
| 397 | returned. *args* is a list of the argument names. *varargs* and *keywords* |
| 398 | are the names of the ``*`` and ``**`` arguments or ``None``. *defaults* is a |
| 399 | tuple of default argument values or None if there are no default arguments; |
| 400 | if this tuple has *n* elements, they correspond to the last *n* elements |
| 401 | listed in *args*. |
Georg Brandl | 138bcb5 | 2007-09-12 19:04:21 +0000 | [diff] [blame] | 402 | |
| 403 | .. deprecated:: 3.0 |
| 404 | Use :func:`getfullargspec` instead, which provides information about |
Benjamin Peterson | 3e8e9cc | 2008-11-12 21:26:46 +0000 | [diff] [blame] | 405 | keyword-only arguments and annotations. |
Georg Brandl | 138bcb5 | 2007-09-12 19:04:21 +0000 | [diff] [blame] | 406 | |
| 407 | |
| 408 | .. function:: getfullargspec(func) |
| 409 | |
Georg Brandl | 8240275 | 2010-01-09 09:48:46 +0000 | [diff] [blame] | 410 | Get the names and default values of a Python function's arguments. A |
| 411 | :term:`named tuple` is returned: |
Georg Brandl | 138bcb5 | 2007-09-12 19:04:21 +0000 | [diff] [blame] | 412 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 413 | ``FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, |
| 414 | annotations)`` |
Georg Brandl | 138bcb5 | 2007-09-12 19:04:21 +0000 | [diff] [blame] | 415 | |
| 416 | *args* is a list of the argument names. *varargs* and *varkw* are the names |
| 417 | of the ``*`` and ``**`` arguments or ``None``. *defaults* is an n-tuple of |
| 418 | the default values of the last n arguments. *kwonlyargs* is a list of |
| 419 | keyword-only argument names. *kwonlydefaults* is a dictionary mapping names |
| 420 | from kwonlyargs to defaults. *annotations* is a dictionary mapping argument |
| 421 | names to annotations. |
| 422 | |
| 423 | The first four items in the tuple correspond to :func:`getargspec`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 424 | |
| 425 | |
| 426 | .. function:: getargvalues(frame) |
| 427 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 428 | Get information about arguments passed into a particular frame. A |
| 429 | :term:`named tuple` ``ArgInfo(args, varargs, keywords, locals)`` is |
Georg Brandl | b30f330 | 2011-01-06 09:23:56 +0000 | [diff] [blame] | 430 | returned. *args* is a list of the argument names. *varargs* and *keywords* |
| 431 | are the names of the ``*`` and ``**`` arguments or ``None``. *locals* is the |
Georg Brandl | c1c4bf8 | 2010-10-15 16:07:41 +0000 | [diff] [blame] | 432 | locals dictionary of the given frame. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 433 | |
| 434 | |
Georg Brandl | c1c4bf8 | 2010-10-15 16:07:41 +0000 | [diff] [blame] | 435 | .. function:: formatargspec(args[, varargs, varkw, defaults, formatarg, formatvarargs, formatvarkw, formatvalue]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 436 | |
| 437 | Format a pretty argument spec from the four values returned by |
| 438 | :func:`getargspec`. The format\* arguments are the corresponding optional |
| 439 | formatting functions that are called to turn names and values into strings. |
| 440 | |
| 441 | |
Georg Brandl | c1c4bf8 | 2010-10-15 16:07:41 +0000 | [diff] [blame] | 442 | .. function:: formatargvalues(args[, varargs, varkw, locals, formatarg, formatvarargs, formatvarkw, formatvalue]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 443 | |
| 444 | Format a pretty argument spec from the four values returned by |
| 445 | :func:`getargvalues`. The format\* arguments are the corresponding optional |
| 446 | formatting functions that are called to turn names and values into strings. |
| 447 | |
| 448 | |
| 449 | .. function:: getmro(cls) |
| 450 | |
| 451 | Return a tuple of class cls's base classes, including cls, in method resolution |
| 452 | order. No class appears more than once in this tuple. Note that the method |
| 453 | resolution order depends on cls's type. Unless a very peculiar user-defined |
| 454 | metatype is in use, cls will be the first element of the tuple. |
| 455 | |
| 456 | |
Benjamin Peterson | 25cd7eb | 2010-03-30 18:42:32 +0000 | [diff] [blame] | 457 | .. function:: getcallargs(func[, *args][, **kwds]) |
| 458 | |
| 459 | Bind the *args* and *kwds* to the argument names of the Python function or |
| 460 | method *func*, as if it was called with them. For bound methods, bind also the |
| 461 | first argument (typically named ``self``) to the associated instance. A dict |
| 462 | is returned, mapping the argument names (including the names of the ``*`` and |
| 463 | ``**`` arguments, if any) to their values from *args* and *kwds*. In case of |
| 464 | invoking *func* incorrectly, i.e. whenever ``func(*args, **kwds)`` would raise |
| 465 | an exception because of incompatible signature, an exception of the same type |
| 466 | and the same or similar message is raised. For example:: |
| 467 | |
| 468 | >>> from inspect import getcallargs |
| 469 | >>> def f(a, b=1, *pos, **named): |
| 470 | ... pass |
| 471 | >>> getcallargs(f, 1, 2, 3) |
| 472 | {'a': 1, 'named': {}, 'b': 2, 'pos': (3,)} |
| 473 | >>> getcallargs(f, a=2, x=4) |
| 474 | {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': ()} |
| 475 | >>> getcallargs(f) |
| 476 | Traceback (most recent call last): |
| 477 | ... |
| 478 | TypeError: f() takes at least 1 argument (0 given) |
| 479 | |
| 480 | .. versionadded:: 3.2 |
| 481 | |
| 482 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 483 | .. _inspect-stack: |
| 484 | |
| 485 | The interpreter stack |
| 486 | --------------------- |
| 487 | |
| 488 | When the following functions return "frame records," each record is a tuple of |
| 489 | six items: the frame object, the filename, the line number of the current line, |
| 490 | the function name, a list of lines of context from the source code, and the |
| 491 | index of the current line within that list. |
| 492 | |
Georg Brandl | e720c0a | 2009-04-27 16:20:50 +0000 | [diff] [blame] | 493 | .. note:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 494 | |
| 495 | Keeping references to frame objects, as found in the first element of the frame |
| 496 | records these functions return, can cause your program to create reference |
| 497 | cycles. Once a reference cycle has been created, the lifespan of all objects |
| 498 | which can be accessed from the objects which form the cycle can become much |
| 499 | longer even if Python's optional cycle detector is enabled. If such cycles must |
| 500 | be created, it is important to ensure they are explicitly broken to avoid the |
| 501 | delayed destruction of objects and increased memory consumption which occurs. |
| 502 | |
| 503 | Though the cycle detector will catch these, destruction of the frames (and local |
| 504 | variables) can be made deterministic by removing the cycle in a |
| 505 | :keyword:`finally` clause. This is also important if the cycle detector was |
| 506 | disabled when Python was compiled or using :func:`gc.disable`. For example:: |
| 507 | |
| 508 | def handle_stackframe_without_leak(): |
| 509 | frame = inspect.currentframe() |
| 510 | try: |
| 511 | # do something with the frame |
| 512 | finally: |
| 513 | del frame |
| 514 | |
| 515 | The optional *context* argument supported by most of these functions specifies |
| 516 | the number of lines of context to return, which are centered around the current |
| 517 | line. |
| 518 | |
| 519 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 520 | .. function:: getframeinfo(frame, context=1) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 521 | |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 522 | Get information about a frame or traceback object. A :term:`named tuple` |
Christian Heimes | 25bb783 | 2008-01-11 16:17:00 +0000 | [diff] [blame] | 523 | ``Traceback(filename, lineno, function, code_context, index)`` is returned. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 524 | |
| 525 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 526 | .. function:: getouterframes(frame, context=1) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 527 | |
| 528 | Get a list of frame records for a frame and all outer frames. These frames |
| 529 | represent the calls that lead to the creation of *frame*. The first entry in the |
| 530 | returned list represents *frame*; the last entry represents the outermost call |
| 531 | on *frame*'s stack. |
| 532 | |
| 533 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 534 | .. function:: getinnerframes(traceback, context=1) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 535 | |
| 536 | Get a list of frame records for a traceback's frame and all inner frames. These |
| 537 | frames represent calls made as a consequence of *frame*. The first entry in the |
| 538 | list represents *traceback*; the last entry represents where the exception was |
| 539 | raised. |
| 540 | |
| 541 | |
| 542 | .. function:: currentframe() |
| 543 | |
| 544 | Return the frame object for the caller's stack frame. |
| 545 | |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 546 | .. impl-detail:: |
| 547 | |
| 548 | This function relies on Python stack frame support in the interpreter, |
| 549 | which isn't guaranteed to exist in all implementations of Python. If |
| 550 | running in an implementation without Python stack frame support this |
| 551 | function returns ``None``. |
Benjamin Peterson | 4ac9ce4 | 2009-10-04 14:49:41 +0000 | [diff] [blame] | 552 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 553 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 554 | .. function:: stack(context=1) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 555 | |
| 556 | Return a list of frame records for the caller's stack. The first entry in the |
| 557 | returned list represents the caller; the last entry represents the outermost |
| 558 | call on the stack. |
| 559 | |
| 560 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 561 | .. function:: trace(context=1) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 562 | |
| 563 | Return a list of frame records for the stack between the current frame and the |
| 564 | frame in which an exception currently being handled was raised in. The first |
| 565 | entry in the list represents the caller; the last entry represents where the |
| 566 | exception was raised. |
| 567 | |
Michael Foord | 95fc51d | 2010-11-20 15:07:30 +0000 | [diff] [blame] | 568 | |
| 569 | Fetching attributes statically |
| 570 | ------------------------------ |
| 571 | |
| 572 | Both :func:`getattr` and :func:`hasattr` can trigger code execution when |
| 573 | fetching or checking for the existence of attributes. Descriptors, like |
| 574 | properties, will be invoked and :meth:`__getattr__` and :meth:`__getattribute__` |
| 575 | may be called. |
| 576 | |
| 577 | For cases where you want passive introspection, like documentation tools, this |
Éric Araujo | 941afed | 2011-09-01 02:47:34 +0200 | [diff] [blame] | 578 | can be inconvenient. :func:`getattr_static` has the same signature as :func:`getattr` |
Michael Foord | 95fc51d | 2010-11-20 15:07:30 +0000 | [diff] [blame] | 579 | but avoids executing code when it fetches attributes. |
| 580 | |
| 581 | .. function:: getattr_static(obj, attr, default=None) |
| 582 | |
| 583 | Retrieve attributes without triggering dynamic lookup via the |
Éric Araujo | 941afed | 2011-09-01 02:47:34 +0200 | [diff] [blame] | 584 | descriptor protocol, :meth:`__getattr__` or :meth:`__getattribute__`. |
Michael Foord | 95fc51d | 2010-11-20 15:07:30 +0000 | [diff] [blame] | 585 | |
| 586 | Note: this function may not be able to retrieve all attributes |
| 587 | that getattr can fetch (like dynamically created attributes) |
| 588 | and may find attributes that getattr can't (like descriptors |
| 589 | that raise AttributeError). It can also return descriptors objects |
| 590 | instead of instance members. |
| 591 | |
Éric Araujo | 941afed | 2011-09-01 02:47:34 +0200 | [diff] [blame] | 592 | If the instance :attr:`__dict__` is shadowed by another member (for example a |
Michael Foord | dcebe0f | 2011-03-15 19:20:44 -0400 | [diff] [blame] | 593 | property) then this function will be unable to find instance members. |
Nick Coghlan | 2dad5ca | 2010-11-21 03:55:53 +0000 | [diff] [blame] | 594 | |
Michael Foord | dcebe0f | 2011-03-15 19:20:44 -0400 | [diff] [blame] | 595 | .. versionadded:: 3.2 |
Michael Foord | 95fc51d | 2010-11-20 15:07:30 +0000 | [diff] [blame] | 596 | |
Éric Araujo | 941afed | 2011-09-01 02:47:34 +0200 | [diff] [blame] | 597 | :func:`getattr_static` does not resolve descriptors, for example slot descriptors or |
Michael Foord | e516265 | 2010-11-20 16:40:44 +0000 | [diff] [blame] | 598 | getset descriptors on objects implemented in C. The descriptor object |
Michael Foord | 95fc51d | 2010-11-20 15:07:30 +0000 | [diff] [blame] | 599 | is returned instead of the underlying attribute. |
| 600 | |
| 601 | You can handle these with code like the following. Note that |
| 602 | for arbitrary getset descriptors invoking these may trigger |
| 603 | code execution:: |
| 604 | |
| 605 | # example code for resolving the builtin descriptor types |
Éric Araujo | 28053fb | 2010-11-22 03:09:19 +0000 | [diff] [blame] | 606 | class _foo: |
Michael Foord | 95fc51d | 2010-11-20 15:07:30 +0000 | [diff] [blame] | 607 | __slots__ = ['foo'] |
| 608 | |
| 609 | slot_descriptor = type(_foo.foo) |
| 610 | getset_descriptor = type(type(open(__file__)).name) |
| 611 | wrapper_descriptor = type(str.__dict__['__add__']) |
| 612 | descriptor_types = (slot_descriptor, getset_descriptor, wrapper_descriptor) |
| 613 | |
| 614 | result = getattr_static(some_object, 'foo') |
| 615 | if type(result) in descriptor_types: |
| 616 | try: |
| 617 | result = result.__get__() |
| 618 | except AttributeError: |
| 619 | # descriptors can raise AttributeError to |
| 620 | # indicate there is no underlying value |
| 621 | # in which case the descriptor itself will |
| 622 | # have to do |
| 623 | pass |
Nick Coghlan | e0f0465 | 2010-11-21 03:44:04 +0000 | [diff] [blame] | 624 | |
Nick Coghlan | 2dad5ca | 2010-11-21 03:55:53 +0000 | [diff] [blame] | 625 | |
Nick Coghlan | e0f0465 | 2010-11-21 03:44:04 +0000 | [diff] [blame] | 626 | Current State of a Generator |
| 627 | ---------------------------- |
| 628 | |
| 629 | When implementing coroutine schedulers and for other advanced uses of |
| 630 | generators, it is useful to determine whether a generator is currently |
| 631 | executing, is waiting to start or resume or execution, or has already |
Raymond Hettinger | 48f3bd3 | 2010-12-16 00:30:53 +0000 | [diff] [blame] | 632 | terminated. :func:`getgeneratorstate` allows the current state of a |
Nick Coghlan | e0f0465 | 2010-11-21 03:44:04 +0000 | [diff] [blame] | 633 | generator to be determined easily. |
| 634 | |
| 635 | .. function:: getgeneratorstate(generator) |
| 636 | |
Raymond Hettinger | 48f3bd3 | 2010-12-16 00:30:53 +0000 | [diff] [blame] | 637 | Get current state of a generator-iterator. |
Nick Coghlan | e0f0465 | 2010-11-21 03:44:04 +0000 | [diff] [blame] | 638 | |
Raymond Hettinger | 48f3bd3 | 2010-12-16 00:30:53 +0000 | [diff] [blame] | 639 | Possible states are: |
Raymond Hettinger | a275c98 | 2011-01-20 04:03:19 +0000 | [diff] [blame] | 640 | * GEN_CREATED: Waiting to start execution. |
| 641 | * GEN_RUNNING: Currently being executed by the interpreter. |
| 642 | * GEN_SUSPENDED: Currently suspended at a yield expression. |
| 643 | * GEN_CLOSED: Execution has completed. |
Nick Coghlan | e0f0465 | 2010-11-21 03:44:04 +0000 | [diff] [blame] | 644 | |
Nick Coghlan | 2dad5ca | 2010-11-21 03:55:53 +0000 | [diff] [blame] | 645 | .. versionadded:: 3.2 |