Martin v. Löwis | 09776b7 | 2002-08-04 17:22:59 +0000 | [diff] [blame] | 1 | # -*- coding: iso-8859-1 -*- |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 2 | """Get useful information from live Python objects. |
| 3 | |
| 4 | This module encapsulates the interface provided by the internal special |
| 5 | attributes (func_*, co_*, im_*, tb_*, etc.) in a friendlier fashion. |
| 6 | It also provides some help for examining source code and class layout. |
| 7 | |
| 8 | Here are some of the useful functions provided by this module: |
| 9 | |
| 10 | ismodule(), isclass(), ismethod(), isfunction(), istraceback(), |
| 11 | isframe(), iscode(), isbuiltin(), isroutine() - check object types |
| 12 | getmembers() - get members of an object that satisfy a given condition |
| 13 | |
| 14 | getfile(), getsourcefile(), getsource() - find an object's source code |
| 15 | getdoc(), getcomments() - get documentation on an object |
| 16 | getmodule() - determine the module that an object came from |
| 17 | getclasstree() - arrange classes so as to represent their hierarchy |
| 18 | |
| 19 | getargspec(), getargvalues() - get info about function arguments |
| 20 | formatargspec(), formatargvalues() - format an argument spec |
| 21 | getouterframes(), getinnerframes() - get info about frames |
| 22 | currentframe() - get the current stack frame |
| 23 | stack(), trace() - get info about frames on the stack or in a traceback |
| 24 | """ |
| 25 | |
| 26 | # This module is in the public domain. No warranties. |
| 27 | |
Ka-Ping Yee | 8b58b84 | 2001-03-01 13:56:16 +0000 | [diff] [blame] | 28 | __author__ = 'Ka-Ping Yee <ping@lfw.org>' |
| 29 | __date__ = '1 Jan 2001' |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 30 | |
Neil Schemenauer | f06f853 | 2002-03-23 23:51:04 +0000 | [diff] [blame] | 31 | import sys, os, types, string, re, dis, imp, tokenize, linecache |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 32 | |
| 33 | # ----------------------------------------------------------- type-checking |
| 34 | def ismodule(object): |
| 35 | """Return true if the object is a module. |
| 36 | |
| 37 | Module objects provide these attributes: |
| 38 | __doc__ documentation string |
| 39 | __file__ filename (missing for built-in modules)""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 40 | return isinstance(object, types.ModuleType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 41 | |
| 42 | def isclass(object): |
| 43 | """Return true if the object is a class. |
| 44 | |
| 45 | Class objects provide these attributes: |
| 46 | __doc__ documentation string |
| 47 | __module__ name of module in which this class was defined""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 48 | return isinstance(object, types.ClassType) or hasattr(object, '__bases__') |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 49 | |
| 50 | def ismethod(object): |
| 51 | """Return true if the object is an instance method. |
| 52 | |
| 53 | Instance method objects provide these attributes: |
| 54 | __doc__ documentation string |
| 55 | __name__ name with which this method was defined |
| 56 | im_class class object in which this method belongs |
| 57 | im_func function object containing implementation of method |
| 58 | im_self instance to which this method is bound, or None""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 59 | return isinstance(object, types.MethodType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 60 | |
Tim Peters | 536d226 | 2001-09-20 05:13:38 +0000 | [diff] [blame] | 61 | def ismethoddescriptor(object): |
Tim Peters | f1d90b9 | 2001-09-20 05:47:55 +0000 | [diff] [blame] | 62 | """Return true if the object is a method descriptor. |
| 63 | |
| 64 | But not if ismethod() or isclass() or isfunction() are true. |
Tim Peters | 536d226 | 2001-09-20 05:13:38 +0000 | [diff] [blame] | 65 | |
| 66 | This is new in Python 2.2, and, for example, is true of int.__add__. |
| 67 | An object passing this test has a __get__ attribute but not a __set__ |
| 68 | attribute, but beyond that the set of attributes varies. __name__ is |
| 69 | usually sensible, and __doc__ often is. |
| 70 | |
Tim Peters | f1d90b9 | 2001-09-20 05:47:55 +0000 | [diff] [blame] | 71 | Methods implemented via descriptors that also pass one of the other |
| 72 | tests return false from the ismethoddescriptor() test, simply because |
| 73 | the other tests promise more -- you can, e.g., count on having the |
| 74 | im_func attribute (etc) when an object passes ismethod().""" |
Tim Peters | 536d226 | 2001-09-20 05:13:38 +0000 | [diff] [blame] | 75 | return (hasattr(object, "__get__") |
| 76 | and not hasattr(object, "__set__") # else it's a data descriptor |
| 77 | and not ismethod(object) # mutual exclusion |
Tim Peters | f1d90b9 | 2001-09-20 05:47:55 +0000 | [diff] [blame] | 78 | and not isfunction(object) |
Tim Peters | 536d226 | 2001-09-20 05:13:38 +0000 | [diff] [blame] | 79 | and not isclass(object)) |
| 80 | |
Martin v. Löwis | e59e2ba | 2003-05-03 09:09:02 +0000 | [diff] [blame] | 81 | def isdatadescriptor(object): |
| 82 | """Return true if the object is a data descriptor. |
| 83 | |
| 84 | Data descriptors have both a __get__ and a __set__ attribute. Examples are |
| 85 | properties (defined in Python) and getsets and members (defined in C). |
| 86 | Typically, data descriptors will also have __name__ and __doc__ attributes |
| 87 | (properties, getsets, and members have both of these attributes), but this |
| 88 | is not guaranteed.""" |
| 89 | return (hasattr(object, "__set__") and hasattr(object, "__get__")) |
| 90 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 91 | def isfunction(object): |
| 92 | """Return true if the object is a user-defined function. |
| 93 | |
| 94 | Function objects provide these attributes: |
| 95 | __doc__ documentation string |
| 96 | __name__ name with which this function was defined |
| 97 | func_code code object containing compiled function bytecode |
| 98 | func_defaults tuple of any default values for arguments |
| 99 | func_doc (same as __doc__) |
| 100 | func_globals global namespace in which this function was defined |
| 101 | func_name (same as __name__)""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 102 | return isinstance(object, types.FunctionType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 103 | |
| 104 | def istraceback(object): |
| 105 | """Return true if the object is a traceback. |
| 106 | |
| 107 | Traceback objects provide these attributes: |
| 108 | tb_frame frame object at this level |
| 109 | tb_lasti index of last attempted instruction in bytecode |
| 110 | tb_lineno current line number in Python source code |
| 111 | tb_next next inner traceback object (called by this level)""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 112 | return isinstance(object, types.TracebackType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 113 | |
| 114 | def isframe(object): |
| 115 | """Return true if the object is a frame object. |
| 116 | |
| 117 | Frame objects provide these attributes: |
| 118 | f_back next outer frame object (this frame's caller) |
| 119 | f_builtins built-in namespace seen by this frame |
| 120 | f_code code object being executed in this frame |
| 121 | f_exc_traceback traceback if raised in this frame, or None |
| 122 | f_exc_type exception type if raised in this frame, or None |
| 123 | f_exc_value exception value if raised in this frame, or None |
| 124 | f_globals global namespace seen by this frame |
| 125 | f_lasti index of last attempted instruction in bytecode |
| 126 | f_lineno current line number in Python source code |
| 127 | f_locals local namespace seen by this frame |
| 128 | f_restricted 0 or 1 if frame is in restricted execution mode |
| 129 | f_trace tracing function for this frame, or None""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 130 | return isinstance(object, types.FrameType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 131 | |
| 132 | def iscode(object): |
| 133 | """Return true if the object is a code object. |
| 134 | |
| 135 | Code objects provide these attributes: |
| 136 | co_argcount number of arguments (not including * or ** args) |
| 137 | co_code string of raw compiled bytecode |
| 138 | co_consts tuple of constants used in the bytecode |
| 139 | co_filename name of file in which this code object was created |
| 140 | co_firstlineno number of first line in Python source code |
| 141 | co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg |
| 142 | co_lnotab encoded mapping of line numbers to bytecode indices |
| 143 | co_name name with which this code object was defined |
| 144 | co_names tuple of names of local variables |
| 145 | co_nlocals number of local variables |
| 146 | co_stacksize virtual machine stack space required |
| 147 | co_varnames tuple of names of arguments and local variables""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 148 | return isinstance(object, types.CodeType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 149 | |
| 150 | def isbuiltin(object): |
| 151 | """Return true if the object is a built-in function or method. |
| 152 | |
| 153 | Built-in functions and methods provide these attributes: |
| 154 | __doc__ documentation string |
| 155 | __name__ original name of this function or method |
| 156 | __self__ instance to which a method is bound, or None""" |
Tim Peters | 28bc59f | 2001-09-16 08:40:16 +0000 | [diff] [blame] | 157 | return isinstance(object, types.BuiltinFunctionType) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 158 | |
| 159 | def isroutine(object): |
| 160 | """Return true if the object is any kind of function or method.""" |
Tim Peters | 536d226 | 2001-09-20 05:13:38 +0000 | [diff] [blame] | 161 | return (isbuiltin(object) |
| 162 | or isfunction(object) |
| 163 | or ismethod(object) |
| 164 | or ismethoddescriptor(object)) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 165 | |
| 166 | def getmembers(object, predicate=None): |
| 167 | """Return all members of an object as (name, value) pairs sorted by name. |
| 168 | Optionally, only return members that satisfy a given predicate.""" |
| 169 | results = [] |
| 170 | for key in dir(object): |
| 171 | value = getattr(object, key) |
| 172 | if not predicate or predicate(value): |
| 173 | results.append((key, value)) |
| 174 | results.sort() |
| 175 | return results |
| 176 | |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 177 | def classify_class_attrs(cls): |
| 178 | """Return list of attribute-descriptor tuples. |
| 179 | |
| 180 | For each name in dir(cls), the return list contains a 4-tuple |
| 181 | with these elements: |
| 182 | |
| 183 | 0. The name (a string). |
| 184 | |
| 185 | 1. The kind of attribute this is, one of these strings: |
| 186 | 'class method' created via classmethod() |
| 187 | 'static method' created via staticmethod() |
| 188 | 'property' created via property() |
| 189 | 'method' any other flavor of method |
| 190 | 'data' not a method |
| 191 | |
| 192 | 2. The class which defined this attribute (a class). |
| 193 | |
| 194 | 3. The object as obtained directly from the defining class's |
| 195 | __dict__, not via getattr. This is especially important for |
| 196 | data attributes: C.data is just a data object, but |
| 197 | C.__dict__['data'] may be a data descriptor with additional |
| 198 | info, like a __doc__ string. |
| 199 | """ |
| 200 | |
| 201 | mro = getmro(cls) |
| 202 | names = dir(cls) |
| 203 | result = [] |
| 204 | for name in names: |
| 205 | # Get the object associated with the name. |
| 206 | # Getting an obj from the __dict__ sometimes reveals more than |
| 207 | # using getattr. Static and class methods are dramatic examples. |
| 208 | if name in cls.__dict__: |
| 209 | obj = cls.__dict__[name] |
| 210 | else: |
| 211 | obj = getattr(cls, name) |
| 212 | |
| 213 | # Figure out where it was defined. |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 214 | homecls = getattr(obj, "__objclass__", None) |
| 215 | if homecls is None: |
Guido van Rossum | 687ae00 | 2001-10-15 22:03:32 +0000 | [diff] [blame] | 216 | # search the dicts. |
Tim Peters | 13b49d3 | 2001-09-23 02:00:29 +0000 | [diff] [blame] | 217 | for base in mro: |
| 218 | if name in base.__dict__: |
| 219 | homecls = base |
| 220 | break |
| 221 | |
| 222 | # Get the object again, in order to get it from the defining |
| 223 | # __dict__ instead of via getattr (if possible). |
| 224 | if homecls is not None and name in homecls.__dict__: |
| 225 | obj = homecls.__dict__[name] |
| 226 | |
| 227 | # Also get the object via getattr. |
| 228 | obj_via_getattr = getattr(cls, name) |
| 229 | |
| 230 | # Classify the object. |
| 231 | if isinstance(obj, staticmethod): |
| 232 | kind = "static method" |
| 233 | elif isinstance(obj, classmethod): |
| 234 | kind = "class method" |
| 235 | elif isinstance(obj, property): |
| 236 | kind = "property" |
| 237 | elif (ismethod(obj_via_getattr) or |
| 238 | ismethoddescriptor(obj_via_getattr)): |
| 239 | kind = "method" |
| 240 | else: |
| 241 | kind = "data" |
| 242 | |
| 243 | result.append((name, kind, homecls, obj)) |
| 244 | |
| 245 | return result |
| 246 | |
Tim Peters | e0b2d7a | 2001-09-22 06:10:55 +0000 | [diff] [blame] | 247 | # ----------------------------------------------------------- class helpers |
| 248 | def _searchbases(cls, accum): |
| 249 | # Simulate the "classic class" search order. |
| 250 | if cls in accum: |
| 251 | return |
| 252 | accum.append(cls) |
| 253 | for base in cls.__bases__: |
| 254 | _searchbases(base, accum) |
| 255 | |
| 256 | def getmro(cls): |
| 257 | "Return tuple of base classes (including cls) in method resolution order." |
| 258 | if hasattr(cls, "__mro__"): |
| 259 | return cls.__mro__ |
| 260 | else: |
| 261 | result = [] |
| 262 | _searchbases(cls, result) |
| 263 | return tuple(result) |
| 264 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 265 | # -------------------------------------------------- source code extraction |
| 266 | def indentsize(line): |
| 267 | """Return the indent size, in spaces, at the start of a line of text.""" |
| 268 | expline = string.expandtabs(line) |
| 269 | return len(expline) - len(string.lstrip(expline)) |
| 270 | |
| 271 | def getdoc(object): |
| 272 | """Get the documentation string for an object. |
| 273 | |
| 274 | All tabs are expanded to spaces. To clean up docstrings that are |
| 275 | indented to line up with blocks of code, any whitespace than can be |
| 276 | uniformly removed from the second line onwards is removed.""" |
Tim Peters | 2400831 | 2002-03-17 18:56:20 +0000 | [diff] [blame] | 277 | try: |
| 278 | doc = object.__doc__ |
| 279 | except AttributeError: |
| 280 | return None |
Michael W. Hudson | 755f75e | 2002-05-20 17:29:46 +0000 | [diff] [blame] | 281 | if not isinstance(doc, types.StringTypes): |
Tim Peters | 2400831 | 2002-03-17 18:56:20 +0000 | [diff] [blame] | 282 | return None |
| 283 | try: |
| 284 | lines = string.split(string.expandtabs(doc), '\n') |
| 285 | except UnicodeError: |
| 286 | return None |
| 287 | else: |
Ka-Ping Yee | a59ef7b | 2002-11-30 03:53:15 +0000 | [diff] [blame] | 288 | # Find minimum indentation of any non-blank lines after first line. |
| 289 | margin = sys.maxint |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 290 | for line in lines[1:]: |
| 291 | content = len(string.lstrip(line)) |
Ka-Ping Yee | a59ef7b | 2002-11-30 03:53:15 +0000 | [diff] [blame] | 292 | if content: |
| 293 | indent = len(line) - content |
| 294 | margin = min(margin, indent) |
| 295 | # Remove indentation. |
| 296 | if lines: |
| 297 | lines[0] = lines[0].lstrip() |
| 298 | if margin < sys.maxint: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 299 | for i in range(1, len(lines)): lines[i] = lines[i][margin:] |
Ka-Ping Yee | a59ef7b | 2002-11-30 03:53:15 +0000 | [diff] [blame] | 300 | # Remove any trailing or leading blank lines. |
| 301 | while lines and not lines[-1]: |
| 302 | lines.pop() |
| 303 | while lines and not lines[0]: |
| 304 | lines.pop(0) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 305 | return string.join(lines, '\n') |
| 306 | |
| 307 | def getfile(object): |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 308 | """Work out which source or compiled file an object was defined in.""" |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 309 | if ismodule(object): |
| 310 | if hasattr(object, '__file__'): |
| 311 | return object.__file__ |
| 312 | raise TypeError, 'arg is a built-in module' |
| 313 | if isclass(object): |
Ka-Ping Yee | c99e0f1 | 2001-04-13 12:10:40 +0000 | [diff] [blame] | 314 | object = sys.modules.get(object.__module__) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 315 | if hasattr(object, '__file__'): |
| 316 | return object.__file__ |
| 317 | raise TypeError, 'arg is a built-in class' |
| 318 | if ismethod(object): |
| 319 | object = object.im_func |
| 320 | if isfunction(object): |
| 321 | object = object.func_code |
| 322 | if istraceback(object): |
| 323 | object = object.tb_frame |
| 324 | if isframe(object): |
| 325 | object = object.f_code |
| 326 | if iscode(object): |
| 327 | return object.co_filename |
| 328 | raise TypeError, 'arg is not a module, class, method, ' \ |
| 329 | 'function, traceback, frame, or code object' |
| 330 | |
Ka-Ping Yee | 4d6fc7f | 2001-04-10 11:43:00 +0000 | [diff] [blame] | 331 | def getmoduleinfo(path): |
| 332 | """Get the module name, suffix, mode, and module type for a given file.""" |
| 333 | filename = os.path.basename(path) |
| 334 | suffixes = map(lambda (suffix, mode, mtype): |
| 335 | (-len(suffix), suffix, mode, mtype), imp.get_suffixes()) |
| 336 | suffixes.sort() # try longest suffixes first, in case they overlap |
| 337 | for neglen, suffix, mode, mtype in suffixes: |
| 338 | if filename[neglen:] == suffix: |
| 339 | return filename[:neglen], suffix, mode, mtype |
| 340 | |
| 341 | def getmodulename(path): |
| 342 | """Return the module name for a given file, or None.""" |
| 343 | info = getmoduleinfo(path) |
| 344 | if info: return info[0] |
| 345 | |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 346 | def getsourcefile(object): |
| 347 | """Return the Python source file an object was defined in, if it exists.""" |
| 348 | filename = getfile(object) |
| 349 | if string.lower(filename[-4:]) in ['.pyc', '.pyo']: |
| 350 | filename = filename[:-4] + '.py' |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 351 | for suffix, mode, kind in imp.get_suffixes(): |
| 352 | if 'b' in mode and string.lower(filename[-len(suffix):]) == suffix: |
| 353 | # Looks like a binary file. We want to only return a text file. |
| 354 | return None |
| 355 | if os.path.exists(filename): |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 356 | return filename |
| 357 | |
| 358 | def getabsfile(object): |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 359 | """Return an absolute path to the source or compiled file for an object. |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 360 | |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 361 | The idea is for each object to have a unique origin, so this routine |
| 362 | normalizes the result as much as possible.""" |
| 363 | return os.path.normcase( |
| 364 | os.path.abspath(getsourcefile(object) or getfile(object))) |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 365 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 366 | modulesbyfile = {} |
| 367 | |
| 368 | def getmodule(object): |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 369 | """Return the module an object was defined in, or None if not found.""" |
Ka-Ping Yee | 202c99b | 2001-04-13 09:15:08 +0000 | [diff] [blame] | 370 | if ismodule(object): |
| 371 | return object |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 372 | if isclass(object): |
Ka-Ping Yee | 8b58b84 | 2001-03-01 13:56:16 +0000 | [diff] [blame] | 373 | return sys.modules.get(object.__module__) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 374 | try: |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 375 | file = getabsfile(object) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 376 | except TypeError: |
| 377 | return None |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 378 | if file in modulesbyfile: |
Ka-Ping Yee | b38bbbd | 2003-03-28 16:29:50 +0000 | [diff] [blame] | 379 | return sys.modules.get(modulesbyfile[file]) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 380 | for module in sys.modules.values(): |
| 381 | if hasattr(module, '__file__'): |
Ka-Ping Yee | c113c24 | 2001-03-02 02:08:53 +0000 | [diff] [blame] | 382 | modulesbyfile[getabsfile(module)] = module.__name__ |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 383 | if file in modulesbyfile: |
Ka-Ping Yee | b38bbbd | 2003-03-28 16:29:50 +0000 | [diff] [blame] | 384 | return sys.modules.get(modulesbyfile[file]) |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 385 | main = sys.modules['__main__'] |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 386 | if hasattr(main, object.__name__): |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 387 | mainobject = getattr(main, object.__name__) |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 388 | if mainobject is object: |
| 389 | return main |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 390 | builtin = sys.modules['__builtin__'] |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 391 | if hasattr(builtin, object.__name__): |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 392 | builtinobject = getattr(builtin, object.__name__) |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 393 | if builtinobject is object: |
| 394 | return builtin |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 395 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 396 | def findsource(object): |
| 397 | """Return the entire source file and starting line number for an object. |
| 398 | |
| 399 | The argument may be a module, class, method, function, traceback, frame, |
| 400 | or code object. The source code is returned as a list of all the lines |
| 401 | in the file and the line number indexes a line in that list. An IOError |
| 402 | is raised if the source code cannot be retrieved.""" |
Neil Schemenauer | f06f853 | 2002-03-23 23:51:04 +0000 | [diff] [blame] | 403 | file = getsourcefile(object) or getfile(object) |
| 404 | lines = linecache.getlines(file) |
| 405 | if not lines: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 406 | raise IOError, 'could not get source code' |
| 407 | |
| 408 | if ismodule(object): |
| 409 | return lines, 0 |
| 410 | |
| 411 | if isclass(object): |
| 412 | name = object.__name__ |
Ka-Ping Yee | a6e5971 | 2001-03-10 09:31:55 +0000 | [diff] [blame] | 413 | pat = re.compile(r'^\s*class\s*' + name + r'\b') |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 414 | for i in range(len(lines)): |
Ka-Ping Yee | a6e5971 | 2001-03-10 09:31:55 +0000 | [diff] [blame] | 415 | if pat.match(lines[i]): return lines, i |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 416 | else: raise IOError, 'could not find class definition' |
| 417 | |
| 418 | if ismethod(object): |
| 419 | object = object.im_func |
| 420 | if isfunction(object): |
| 421 | object = object.func_code |
| 422 | if istraceback(object): |
| 423 | object = object.tb_frame |
| 424 | if isframe(object): |
| 425 | object = object.f_code |
| 426 | if iscode(object): |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 427 | if not hasattr(object, 'co_firstlineno'): |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 428 | raise IOError, 'could not find function definition' |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 429 | lnum = object.co_firstlineno - 1 |
Raymond Hettinger | 2d375f7 | 2003-01-14 02:19:36 +0000 | [diff] [blame] | 430 | pat = re.compile(r'^(\s*def\s)|(.*\slambda(:|\s))') |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 431 | while lnum > 0: |
Ka-Ping Yee | a6e5971 | 2001-03-10 09:31:55 +0000 | [diff] [blame] | 432 | if pat.match(lines[lnum]): break |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 433 | lnum = lnum - 1 |
| 434 | return lines, lnum |
Neal Norwitz | 8a11f5d | 2002-03-13 03:14:26 +0000 | [diff] [blame] | 435 | raise IOError, 'could not find code object' |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 436 | |
| 437 | def getcomments(object): |
Jeremy Hylton | b4c17c8 | 2002-03-28 23:01:56 +0000 | [diff] [blame] | 438 | """Get lines of comments immediately preceding an object's source code. |
| 439 | |
| 440 | Returns None when source can't be found. |
| 441 | """ |
| 442 | try: |
| 443 | lines, lnum = findsource(object) |
| 444 | except (IOError, TypeError): |
| 445 | return None |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 446 | |
| 447 | if ismodule(object): |
| 448 | # Look for a comment block at the top of the file. |
| 449 | start = 0 |
Ka-Ping Yee | b910efe | 2001-04-12 13:17:17 +0000 | [diff] [blame] | 450 | if lines and lines[0][:2] == '#!': start = 1 |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 451 | while start < len(lines) and string.strip(lines[start]) in ['', '#']: |
| 452 | start = start + 1 |
Ka-Ping Yee | b910efe | 2001-04-12 13:17:17 +0000 | [diff] [blame] | 453 | if start < len(lines) and lines[start][:1] == '#': |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 454 | comments = [] |
| 455 | end = start |
| 456 | while end < len(lines) and lines[end][:1] == '#': |
| 457 | comments.append(string.expandtabs(lines[end])) |
| 458 | end = end + 1 |
| 459 | return string.join(comments, '') |
| 460 | |
| 461 | # Look for a preceding block of comments at the same indentation. |
| 462 | elif lnum > 0: |
| 463 | indent = indentsize(lines[lnum]) |
| 464 | end = lnum - 1 |
| 465 | if end >= 0 and string.lstrip(lines[end])[:1] == '#' and \ |
| 466 | indentsize(lines[end]) == indent: |
| 467 | comments = [string.lstrip(string.expandtabs(lines[end]))] |
| 468 | if end > 0: |
| 469 | end = end - 1 |
| 470 | comment = string.lstrip(string.expandtabs(lines[end])) |
| 471 | while comment[:1] == '#' and indentsize(lines[end]) == indent: |
| 472 | comments[:0] = [comment] |
| 473 | end = end - 1 |
| 474 | if end < 0: break |
| 475 | comment = string.lstrip(string.expandtabs(lines[end])) |
| 476 | while comments and string.strip(comments[0]) == '#': |
| 477 | comments[:1] = [] |
| 478 | while comments and string.strip(comments[-1]) == '#': |
| 479 | comments[-1:] = [] |
| 480 | return string.join(comments, '') |
| 481 | |
| 482 | class ListReader: |
| 483 | """Provide a readline() method to return lines from a list of strings.""" |
| 484 | def __init__(self, lines): |
| 485 | self.lines = lines |
| 486 | self.index = 0 |
| 487 | |
| 488 | def readline(self): |
| 489 | i = self.index |
| 490 | if i < len(self.lines): |
| 491 | self.index = i + 1 |
| 492 | return self.lines[i] |
| 493 | else: return '' |
| 494 | |
Tim Peters | 4efb6e9 | 2001-06-29 23:51:08 +0000 | [diff] [blame] | 495 | class EndOfBlock(Exception): pass |
| 496 | |
| 497 | class BlockFinder: |
| 498 | """Provide a tokeneater() method to detect the end of a code block.""" |
| 499 | def __init__(self): |
| 500 | self.indent = 0 |
| 501 | self.started = 0 |
| 502 | self.last = 0 |
| 503 | |
| 504 | def tokeneater(self, type, token, (srow, scol), (erow, ecol), line): |
| 505 | if not self.started: |
| 506 | if type == tokenize.NAME: self.started = 1 |
| 507 | elif type == tokenize.NEWLINE: |
| 508 | self.last = srow |
| 509 | elif type == tokenize.INDENT: |
| 510 | self.indent = self.indent + 1 |
| 511 | elif type == tokenize.DEDENT: |
| 512 | self.indent = self.indent - 1 |
| 513 | if self.indent == 0: raise EndOfBlock, self.last |
Raymond Hettinger | 2e7b748 | 2003-01-19 13:21:20 +0000 | [diff] [blame] | 514 | elif type == tokenize.NAME and scol == 0: |
| 515 | raise EndOfBlock, self.last |
Tim Peters | 4efb6e9 | 2001-06-29 23:51:08 +0000 | [diff] [blame] | 516 | |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 517 | def getblock(lines): |
| 518 | """Extract the block of code at the top of the given list of lines.""" |
Tim Peters | 4efb6e9 | 2001-06-29 23:51:08 +0000 | [diff] [blame] | 519 | try: |
| 520 | tokenize.tokenize(ListReader(lines).readline, BlockFinder().tokeneater) |
| 521 | except EndOfBlock, eob: |
| 522 | return lines[:eob.args[0]] |
Raymond Hettinger | 2d375f7 | 2003-01-14 02:19:36 +0000 | [diff] [blame] | 523 | # Fooling the indent/dedent logic implies a one-line definition |
| 524 | return lines[:1] |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 525 | |
| 526 | def getsourcelines(object): |
| 527 | """Return a list of source lines and starting line number for an object. |
| 528 | |
| 529 | The argument may be a module, class, method, function, traceback, frame, |
| 530 | or code object. The source code is returned as a list of the lines |
| 531 | corresponding to the object and the line number indicates where in the |
| 532 | original source file the first line of code was found. An IOError is |
| 533 | raised if the source code cannot be retrieved.""" |
| 534 | lines, lnum = findsource(object) |
| 535 | |
| 536 | if ismodule(object): return lines, 0 |
| 537 | else: return getblock(lines[lnum:]), lnum + 1 |
| 538 | |
| 539 | def getsource(object): |
| 540 | """Return the text of the source code for an object. |
| 541 | |
| 542 | The argument may be a module, class, method, function, traceback, frame, |
| 543 | or code object. The source code is returned as a single string. An |
| 544 | IOError is raised if the source code cannot be retrieved.""" |
| 545 | lines, lnum = getsourcelines(object) |
| 546 | return string.join(lines, '') |
| 547 | |
| 548 | # --------------------------------------------------- class tree extraction |
| 549 | def walktree(classes, children, parent): |
| 550 | """Recursive helper function for getclasstree().""" |
| 551 | results = [] |
| 552 | classes.sort(lambda a, b: cmp(a.__name__, b.__name__)) |
| 553 | for c in classes: |
| 554 | results.append((c, c.__bases__)) |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 555 | if c in children: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 556 | results.append(walktree(children[c], children, c)) |
| 557 | return results |
| 558 | |
| 559 | def getclasstree(classes, unique=0): |
| 560 | """Arrange the given list of classes into a hierarchy of nested lists. |
| 561 | |
| 562 | Where a nested list appears, it contains classes derived from the class |
| 563 | whose entry immediately precedes the list. Each entry is a 2-tuple |
| 564 | containing a class and a tuple of its base classes. If the 'unique' |
| 565 | argument is true, exactly one entry appears in the returned structure |
| 566 | for each class in the given list. Otherwise, classes using multiple |
| 567 | inheritance and their descendants will appear multiple times.""" |
| 568 | children = {} |
| 569 | roots = [] |
| 570 | for c in classes: |
| 571 | if c.__bases__: |
| 572 | for parent in c.__bases__: |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 573 | if not parent in children: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 574 | children[parent] = [] |
| 575 | children[parent].append(c) |
| 576 | if unique and parent in classes: break |
| 577 | elif c not in roots: |
| 578 | roots.append(c) |
Raymond Hettinger | e0d4972 | 2002-06-02 18:55:56 +0000 | [diff] [blame] | 579 | for parent in children: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 580 | if parent not in classes: |
| 581 | roots.append(parent) |
| 582 | return walktree(roots, children, None) |
| 583 | |
| 584 | # ------------------------------------------------ argument list extraction |
| 585 | # These constants are from Python's compile.h. |
| 586 | CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 1, 2, 4, 8 |
| 587 | |
| 588 | def getargs(co): |
| 589 | """Get information about the arguments accepted by a code object. |
| 590 | |
| 591 | Three things are returned: (args, varargs, varkw), where 'args' is |
| 592 | a list of argument names (possibly containing nested lists), and |
| 593 | 'varargs' and 'varkw' are the names of the * and ** arguments or None.""" |
| 594 | if not iscode(co): raise TypeError, 'arg is not a code object' |
| 595 | |
| 596 | code = co.co_code |
| 597 | nargs = co.co_argcount |
| 598 | names = co.co_varnames |
| 599 | args = list(names[:nargs]) |
| 600 | step = 0 |
| 601 | |
| 602 | # The following acrobatics are for anonymous (tuple) arguments. |
| 603 | for i in range(nargs): |
| 604 | if args[i][:1] in ['', '.']: |
| 605 | stack, remain, count = [], [], [] |
| 606 | while step < len(code): |
| 607 | op = ord(code[step]) |
| 608 | step = step + 1 |
| 609 | if op >= dis.HAVE_ARGUMENT: |
| 610 | opname = dis.opname[op] |
| 611 | value = ord(code[step]) + ord(code[step+1])*256 |
| 612 | step = step + 2 |
| 613 | if opname in ['UNPACK_TUPLE', 'UNPACK_SEQUENCE']: |
| 614 | remain.append(value) |
| 615 | count.append(value) |
| 616 | elif opname == 'STORE_FAST': |
| 617 | stack.append(names[value]) |
| 618 | remain[-1] = remain[-1] - 1 |
| 619 | while remain[-1] == 0: |
| 620 | remain.pop() |
| 621 | size = count.pop() |
| 622 | stack[-size:] = [stack[-size:]] |
| 623 | if not remain: break |
| 624 | remain[-1] = remain[-1] - 1 |
| 625 | if not remain: break |
| 626 | args[i] = stack[0] |
| 627 | |
| 628 | varargs = None |
| 629 | if co.co_flags & CO_VARARGS: |
| 630 | varargs = co.co_varnames[nargs] |
| 631 | nargs = nargs + 1 |
| 632 | varkw = None |
| 633 | if co.co_flags & CO_VARKEYWORDS: |
| 634 | varkw = co.co_varnames[nargs] |
| 635 | return args, varargs, varkw |
| 636 | |
| 637 | def getargspec(func): |
| 638 | """Get the names and default values of a function's arguments. |
| 639 | |
| 640 | A tuple of four things is returned: (args, varargs, varkw, defaults). |
| 641 | 'args' is a list of the argument names (it may contain nested lists). |
| 642 | 'varargs' and 'varkw' are the names of the * and ** arguments or None. |
| 643 | 'defaults' is an n-tuple of the default values of the last n arguments.""" |
| 644 | if not isfunction(func): raise TypeError, 'arg is not a Python function' |
| 645 | args, varargs, varkw = getargs(func.func_code) |
| 646 | return args, varargs, varkw, func.func_defaults |
| 647 | |
| 648 | def getargvalues(frame): |
| 649 | """Get information about arguments passed into a particular frame. |
| 650 | |
| 651 | A tuple of four things is returned: (args, varargs, varkw, locals). |
| 652 | 'args' is a list of the argument names (it may contain nested lists). |
| 653 | 'varargs' and 'varkw' are the names of the * and ** arguments or None. |
| 654 | 'locals' is the locals dictionary of the given frame.""" |
| 655 | args, varargs, varkw = getargs(frame.f_code) |
| 656 | return args, varargs, varkw, frame.f_locals |
| 657 | |
| 658 | def joinseq(seq): |
| 659 | if len(seq) == 1: |
| 660 | return '(' + seq[0] + ',)' |
| 661 | else: |
| 662 | return '(' + string.join(seq, ', ') + ')' |
| 663 | |
| 664 | def strseq(object, convert, join=joinseq): |
| 665 | """Recursively walk a sequence, stringifying each element.""" |
| 666 | if type(object) in [types.ListType, types.TupleType]: |
| 667 | return join(map(lambda o, c=convert, j=join: strseq(o, c, j), object)) |
| 668 | else: |
| 669 | return convert(object) |
| 670 | |
| 671 | def formatargspec(args, varargs=None, varkw=None, defaults=None, |
| 672 | formatarg=str, |
| 673 | formatvarargs=lambda name: '*' + name, |
| 674 | formatvarkw=lambda name: '**' + name, |
| 675 | formatvalue=lambda value: '=' + repr(value), |
| 676 | join=joinseq): |
| 677 | """Format an argument spec from the 4 values returned by getargspec. |
| 678 | |
| 679 | The first four arguments are (args, varargs, varkw, defaults). The |
| 680 | other four arguments are the corresponding optional formatting functions |
| 681 | that are called to turn names and values into strings. The ninth |
| 682 | argument is an optional function to format the sequence of arguments.""" |
| 683 | specs = [] |
| 684 | if defaults: |
| 685 | firstdefault = len(args) - len(defaults) |
| 686 | for i in range(len(args)): |
| 687 | spec = strseq(args[i], formatarg, join) |
| 688 | if defaults and i >= firstdefault: |
| 689 | spec = spec + formatvalue(defaults[i - firstdefault]) |
| 690 | specs.append(spec) |
Raymond Hettinger | 936654b | 2002-06-01 03:06:31 +0000 | [diff] [blame] | 691 | if varargs is not None: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 692 | specs.append(formatvarargs(varargs)) |
Raymond Hettinger | 936654b | 2002-06-01 03:06:31 +0000 | [diff] [blame] | 693 | if varkw is not None: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 694 | specs.append(formatvarkw(varkw)) |
| 695 | return '(' + string.join(specs, ', ') + ')' |
| 696 | |
| 697 | def formatargvalues(args, varargs, varkw, locals, |
| 698 | formatarg=str, |
| 699 | formatvarargs=lambda name: '*' + name, |
| 700 | formatvarkw=lambda name: '**' + name, |
| 701 | formatvalue=lambda value: '=' + repr(value), |
| 702 | join=joinseq): |
| 703 | """Format an argument spec from the 4 values returned by getargvalues. |
| 704 | |
| 705 | The first four arguments are (args, varargs, varkw, locals). The |
| 706 | next four arguments are the corresponding optional formatting functions |
| 707 | that are called to turn names and values into strings. The ninth |
| 708 | argument is an optional function to format the sequence of arguments.""" |
| 709 | def convert(name, locals=locals, |
| 710 | formatarg=formatarg, formatvalue=formatvalue): |
| 711 | return formatarg(name) + formatvalue(locals[name]) |
| 712 | specs = [] |
| 713 | for i in range(len(args)): |
| 714 | specs.append(strseq(args[i], convert, join)) |
| 715 | if varargs: |
| 716 | specs.append(formatvarargs(varargs) + formatvalue(locals[varargs])) |
| 717 | if varkw: |
| 718 | specs.append(formatvarkw(varkw) + formatvalue(locals[varkw])) |
| 719 | return '(' + string.join(specs, ', ') + ')' |
| 720 | |
| 721 | # -------------------------------------------------- stack frame extraction |
| 722 | def getframeinfo(frame, context=1): |
| 723 | """Get information about a frame or traceback object. |
| 724 | |
| 725 | A tuple of five things is returned: the filename, the line number of |
| 726 | the current line, the function name, a list of lines of context from |
| 727 | the source code, and the index of the current line within that list. |
| 728 | The optional second argument specifies the number of lines of context |
| 729 | to return, which are centered around the current line.""" |
| 730 | if istraceback(frame): |
| 731 | frame = frame.tb_frame |
| 732 | if not isframe(frame): |
| 733 | raise TypeError, 'arg is not a frame or traceback object' |
| 734 | |
Neil Schemenauer | f06f853 | 2002-03-23 23:51:04 +0000 | [diff] [blame] | 735 | filename = getsourcefile(frame) or getfile(frame) |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 736 | lineno = frame.f_lineno |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 737 | if context > 0: |
Guido van Rossum | 54e54c6 | 2001-09-04 19:14:14 +0000 | [diff] [blame] | 738 | start = lineno - 1 - context//2 |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 739 | try: |
| 740 | lines, lnum = findsource(frame) |
Ka-Ping Yee | 4eb0c00 | 2001-03-02 05:50:34 +0000 | [diff] [blame] | 741 | except IOError: |
| 742 | lines = index = None |
| 743 | else: |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 744 | start = max(start, 1) |
| 745 | start = min(start, len(lines) - context) |
| 746 | lines = lines[start:start+context] |
Ka-Ping Yee | 59ade08 | 2001-03-01 03:55:35 +0000 | [diff] [blame] | 747 | index = lineno - 1 - start |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 748 | else: |
| 749 | lines = index = None |
| 750 | |
Ka-Ping Yee | 59ade08 | 2001-03-01 03:55:35 +0000 | [diff] [blame] | 751 | return (filename, lineno, frame.f_code.co_name, lines, index) |
| 752 | |
| 753 | def getlineno(frame): |
| 754 | """Get the line number from a frame object, allowing for optimization.""" |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 755 | # FrameType.f_lineno is now a descriptor that grovels co_lnotab |
| 756 | return frame.f_lineno |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 757 | |
| 758 | def getouterframes(frame, context=1): |
| 759 | """Get a list of records for a frame and all higher (calling) frames. |
| 760 | |
| 761 | Each record contains a frame object, filename, line number, function |
| 762 | name, a list of lines of context, and index within the context.""" |
| 763 | framelist = [] |
| 764 | while frame: |
| 765 | framelist.append((frame,) + getframeinfo(frame, context)) |
| 766 | frame = frame.f_back |
| 767 | return framelist |
| 768 | |
| 769 | def getinnerframes(tb, context=1): |
| 770 | """Get a list of records for a traceback's frame and all lower frames. |
| 771 | |
| 772 | Each record contains a frame object, filename, line number, function |
| 773 | name, a list of lines of context, and index within the context.""" |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 774 | framelist = [] |
| 775 | while tb: |
| 776 | framelist.append((tb.tb_frame,) + getframeinfo(tb, context)) |
| 777 | tb = tb.tb_next |
| 778 | return framelist |
| 779 | |
| 780 | def currentframe(): |
| 781 | """Return the frame object for the caller's stack frame.""" |
| 782 | try: |
Skip Montanaro | a959a36 | 2002-03-25 21:37:54 +0000 | [diff] [blame] | 783 | 1/0 |
| 784 | except ZeroDivisionError: |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 785 | return sys.exc_info()[2].tb_frame.f_back |
Ka-Ping Yee | 6397c7c | 2001-02-27 14:43:21 +0000 | [diff] [blame] | 786 | |
| 787 | if hasattr(sys, '_getframe'): currentframe = sys._getframe |
| 788 | |
| 789 | def stack(context=1): |
| 790 | """Return a list of records for the stack above the caller's frame.""" |
| 791 | return getouterframes(currentframe().f_back, context) |
| 792 | |
| 793 | def trace(context=1): |
Tim Peters | 85ba673 | 2001-02-28 08:26:44 +0000 | [diff] [blame] | 794 | """Return a list of records for the stack below the current exception.""" |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 795 | return getinnerframes(sys.exc_info()[2], context) |