1 # -*- coding: iso-8859-1 -*-
2 """Get useful information from live Python objects.
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.
8 Here are some of the useful functions provided by this module:
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
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
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
26 # This module is in the public domain. No warranties.
28 __author__
= 'Ka-Ping Yee <ping@lfw.org>'
29 __date__
= '1 Jan 2001'
31 import sys
, os
, types
, string
, re
, dis
, imp
, tokenize
, linecache
33 # ----------------------------------------------------------- type-checking
35 """Return true if the object is a module.
37 Module objects provide these attributes:
38 __doc__ documentation string
39 __file__ filename (missing for built-in modules)"""
40 return isinstance(object, types
.ModuleType
)
43 """Return true if the object is a class.
45 Class objects provide these attributes:
46 __doc__ documentation string
47 __module__ name of module in which this class was defined"""
48 return isinstance(object, types
.ClassType
) or hasattr(object, '__bases__')
51 """Return true if the object is an instance method.
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"""
59 return isinstance(object, types
.MethodType
)
61 def ismethoddescriptor(object):
62 """Return true if the object is a method descriptor.
64 But not if ismethod() or isclass() or isfunction() are true.
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.
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()."""
75 return (hasattr(object, "__get__")
76 and not hasattr(object, "__set__") # else it's a data descriptor
77 and not ismethod(object) # mutual exclusion
78 and not isfunction(object)
79 and not isclass(object))
81 def isfunction(object):
82 """Return true if the object is a user-defined function.
84 Function objects provide these attributes:
85 __doc__ documentation string
86 __name__ name with which this function was defined
87 func_code code object containing compiled function bytecode
88 func_defaults tuple of any default values for arguments
89 func_doc (same as __doc__)
90 func_globals global namespace in which this function was defined
91 func_name (same as __name__)"""
92 return isinstance(object, types
.FunctionType
)
94 def istraceback(object):
95 """Return true if the object is a traceback.
97 Traceback objects provide these attributes:
98 tb_frame frame object at this level
99 tb_lasti index of last attempted instruction in bytecode
100 tb_lineno current line number in Python source code
101 tb_next next inner traceback object (called by this level)"""
102 return isinstance(object, types
.TracebackType
)
105 """Return true if the object is a frame object.
107 Frame objects provide these attributes:
108 f_back next outer frame object (this frame's caller)
109 f_builtins built-in namespace seen by this frame
110 f_code code object being executed in this frame
111 f_exc_traceback traceback if raised in this frame, or None
112 f_exc_type exception type if raised in this frame, or None
113 f_exc_value exception value if raised in this frame, or None
114 f_globals global namespace seen by this frame
115 f_lasti index of last attempted instruction in bytecode
116 f_lineno current line number in Python source code
117 f_locals local namespace seen by this frame
118 f_restricted 0 or 1 if frame is in restricted execution mode
119 f_trace tracing function for this frame, or None"""
120 return isinstance(object, types
.FrameType
)
123 """Return true if the object is a code object.
125 Code objects provide these attributes:
126 co_argcount number of arguments (not including * or ** args)
127 co_code string of raw compiled bytecode
128 co_consts tuple of constants used in the bytecode
129 co_filename name of file in which this code object was created
130 co_firstlineno number of first line in Python source code
131 co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg
132 co_lnotab encoded mapping of line numbers to bytecode indices
133 co_name name with which this code object was defined
134 co_names tuple of names of local variables
135 co_nlocals number of local variables
136 co_stacksize virtual machine stack space required
137 co_varnames tuple of names of arguments and local variables"""
138 return isinstance(object, types
.CodeType
)
140 def isbuiltin(object):
141 """Return true if the object is a built-in function or method.
143 Built-in functions and methods provide these attributes:
144 __doc__ documentation string
145 __name__ original name of this function or method
146 __self__ instance to which a method is bound, or None"""
147 return isinstance(object, types
.BuiltinFunctionType
)
149 def isroutine(object):
150 """Return true if the object is any kind of function or method."""
151 return (isbuiltin(object)
152 or isfunction(object)
154 or ismethoddescriptor(object))
156 def getmembers(object, predicate
=None):
157 """Return all members of an object as (name, value) pairs sorted by name.
158 Optionally, only return members that satisfy a given predicate."""
160 for key
in dir(object):
161 value
= getattr(object, key
)
162 if not predicate
or predicate(value
):
163 results
.append((key
, value
))
167 def classify_class_attrs(cls
):
168 """Return list of attribute-descriptor tuples.
170 For each name in dir(cls), the return list contains a 4-tuple
173 0. The name (a string).
175 1. The kind of attribute this is, one of these strings:
176 'class method' created via classmethod()
177 'static method' created via staticmethod()
178 'property' created via property()
179 'method' any other flavor of method
182 2. The class which defined this attribute (a class).
184 3. The object as obtained directly from the defining class's
185 __dict__, not via getattr. This is especially important for
186 data attributes: C.data is just a data object, but
187 C.__dict__['data'] may be a data descriptor with additional
188 info, like a __doc__ string.
195 # Get the object associated with the name.
196 # Getting an obj from the __dict__ sometimes reveals more than
197 # using getattr. Static and class methods are dramatic examples.
198 if name
in cls
.__dict
__:
199 obj
= cls
.__dict
__[name
]
201 obj
= getattr(cls
, name
)
203 # Figure out where it was defined.
204 homecls
= getattr(obj
, "__objclass__", None)
208 if name
in base
.__dict
__:
212 # Get the object again, in order to get it from the defining
213 # __dict__ instead of via getattr (if possible).
214 if homecls
is not None and name
in homecls
.__dict
__:
215 obj
= homecls
.__dict
__[name
]
217 # Also get the object via getattr.
218 obj_via_getattr
= getattr(cls
, name
)
220 # Classify the object.
221 if isinstance(obj
, staticmethod):
222 kind
= "static method"
223 elif isinstance(obj
, classmethod):
224 kind
= "class method"
225 elif isinstance(obj
, property):
227 elif (ismethod(obj_via_getattr
) or
228 ismethoddescriptor(obj_via_getattr
)):
233 result
.append((name
, kind
, homecls
, obj
))
237 # ----------------------------------------------------------- class helpers
238 def _searchbases(cls
, accum
):
239 # Simulate the "classic class" search order.
243 for base
in cls
.__bases
__:
244 _searchbases(base
, accum
)
247 "Return tuple of base classes (including cls) in method resolution order."
248 if hasattr(cls
, "__mro__"):
252 _searchbases(cls
, result
)
255 # -------------------------------------------------- source code extraction
256 def indentsize(line
):
257 """Return the indent size, in spaces, at the start of a line of text."""
258 expline
= string
.expandtabs(line
)
259 return len(expline
) - len(string
.lstrip(expline
))
262 """Get the documentation string for an object.
264 All tabs are expanded to spaces. To clean up docstrings that are
265 indented to line up with blocks of code, any whitespace than can be
266 uniformly removed from the second line onwards is removed."""
269 except AttributeError:
271 if not isinstance(doc
, types
.StringTypes
):
274 lines
= string
.split(string
.expandtabs(doc
), '\n')
278 # Find minimum indentation of any non-blank lines after first line.
280 for line
in lines
[1:]:
281 content
= len(string
.lstrip(line
))
283 indent
= len(line
) - content
284 margin
= min(margin
, indent
)
285 # Remove indentation.
287 lines
[0] = lines
[0].lstrip()
288 if margin
< sys
.maxint
:
289 for i
in range(1, len(lines
)): lines
[i
] = lines
[i
][margin
:]
290 # Remove any trailing or leading blank lines.
291 while lines
and not lines
[-1]:
293 while lines
and not lines
[0]:
295 return string
.join(lines
, '\n')
298 """Work out which source or compiled file an object was defined in."""
300 if hasattr(object, '__file__'):
301 return object.__file
__
302 raise TypeError, 'arg is a built-in module'
304 object = sys
.modules
.get(object.__module
__)
305 if hasattr(object, '__file__'):
306 return object.__file
__
307 raise TypeError, 'arg is a built-in class'
309 object = object.im_func
310 if isfunction(object):
311 object = object.func_code
312 if istraceback(object):
313 object = object.tb_frame
315 object = object.f_code
317 return object.co_filename
318 raise TypeError, 'arg is not a module, class, method, ' \
319 'function, traceback, frame, or code object'
321 def getmoduleinfo(path
):
322 """Get the module name, suffix, mode, and module type for a given file."""
323 filename
= os
.path
.basename(path
)
324 suffixes
= map(lambda (suffix
, mode
, mtype
):
325 (-len(suffix
), suffix
, mode
, mtype
), imp
.get_suffixes())
326 suffixes
.sort() # try longest suffixes first, in case they overlap
327 for neglen
, suffix
, mode
, mtype
in suffixes
:
328 if filename
[neglen
:] == suffix
:
329 return filename
[:neglen
], suffix
, mode
, mtype
331 def getmodulename(path
):
332 """Return the module name for a given file, or None."""
333 info
= getmoduleinfo(path
)
334 if info
: return info
[0]
336 def getsourcefile(object):
337 """Return the Python source file an object was defined in, if it exists."""
338 filename
= getfile(object)
339 if string
.lower(filename
[-4:]) in ['.pyc', '.pyo']:
340 filename
= filename
[:-4] + '.py'
341 for suffix
, mode
, kind
in imp
.get_suffixes():
342 if 'b' in mode
and string
.lower(filename
[-len(suffix
):]) == suffix
:
343 # Looks like a binary file. We want to only return a text file.
345 if os
.path
.exists(filename
):
348 def getabsfile(object):
349 """Return an absolute path to the source or compiled file for an object.
351 The idea is for each object to have a unique origin, so this routine
352 normalizes the result as much as possible."""
353 return os
.path
.normcase(
354 os
.path
.abspath(getsourcefile(object) or getfile(object)))
358 def getmodule(object):
359 """Return the module an object was defined in, or None if not found."""
363 return sys
.modules
.get(object.__module
__)
365 file = getabsfile(object)
368 if file in modulesbyfile
:
369 return sys
.modules
.get(modulesbyfile
[file])
370 for module
in sys
.modules
.values():
371 if hasattr(module
, '__file__'):
372 modulesbyfile
[getabsfile(module
)] = module
.__name
__
373 if file in modulesbyfile
:
374 return sys
.modules
.get(modulesbyfile
[file])
375 main
= sys
.modules
['__main__']
376 if hasattr(main
, object.__name
__):
377 mainobject
= getattr(main
, object.__name
__)
378 if mainobject
is object:
380 builtin
= sys
.modules
['__builtin__']
381 if hasattr(builtin
, object.__name
__):
382 builtinobject
= getattr(builtin
, object.__name
__)
383 if builtinobject
is object:
386 def findsource(object):
387 """Return the entire source file and starting line number for an object.
389 The argument may be a module, class, method, function, traceback, frame,
390 or code object. The source code is returned as a list of all the lines
391 in the file and the line number indexes a line in that list. An IOError
392 is raised if the source code cannot be retrieved."""
393 file = getsourcefile(object) or getfile(object)
394 lines
= linecache
.getlines(file)
396 raise IOError, 'could not get source code'
402 name
= object.__name
__
403 pat
= re
.compile(r
'^\s*class\s*' + name
+ r
'\b')
404 for i
in range(len(lines
)):
405 if pat
.match(lines
[i
]): return lines
, i
406 else: raise IOError, 'could not find class definition'
409 object = object.im_func
410 if isfunction(object):
411 object = object.func_code
412 if istraceback(object):
413 object = object.tb_frame
415 object = object.f_code
417 if not hasattr(object, 'co_firstlineno'):
418 raise IOError, 'could not find function definition'
419 lnum
= object.co_firstlineno
- 1
420 pat
= re
.compile(r
'^(\s*def\s)|(.*\slambda(:|\s))')
422 if pat
.match(lines
[lnum
]): break
425 raise IOError, 'could not find code object'
427 def getcomments(object):
428 """Get lines of comments immediately preceding an object's source code.
430 Returns None when source can't be found.
433 lines
, lnum
= findsource(object)
434 except (IOError, TypeError):
438 # Look for a comment block at the top of the file.
440 if lines
and lines
[0][:2] == '#!': start
= 1
441 while start
< len(lines
) and string
.strip(lines
[start
]) in ['', '#']:
443 if start
< len(lines
) and lines
[start
][:1] == '#':
446 while end
< len(lines
) and lines
[end
][:1] == '#':
447 comments
.append(string
.expandtabs(lines
[end
]))
449 return string
.join(comments
, '')
451 # Look for a preceding block of comments at the same indentation.
453 indent
= indentsize(lines
[lnum
])
455 if end
>= 0 and string
.lstrip(lines
[end
])[:1] == '#' and \
456 indentsize(lines
[end
]) == indent
:
457 comments
= [string
.lstrip(string
.expandtabs(lines
[end
]))]
460 comment
= string
.lstrip(string
.expandtabs(lines
[end
]))
461 while comment
[:1] == '#' and indentsize(lines
[end
]) == indent
:
462 comments
[:0] = [comment
]
465 comment
= string
.lstrip(string
.expandtabs(lines
[end
]))
466 while comments
and string
.strip(comments
[0]) == '#':
468 while comments
and string
.strip(comments
[-1]) == '#':
470 return string
.join(comments
, '')
473 """Provide a readline() method to return lines from a list of strings."""
474 def __init__(self
, lines
):
480 if i
< len(self
.lines
):
485 class EndOfBlock(Exception): pass
488 """Provide a tokeneater() method to detect the end of a code block."""
494 def tokeneater(self
, type, token
, (srow
, scol
), (erow
, ecol
), line
):
496 if type == tokenize
.NAME
: self
.started
= 1
497 elif type == tokenize
.NEWLINE
:
499 elif type == tokenize
.INDENT
:
500 self
.indent
= self
.indent
+ 1
501 elif type == tokenize
.DEDENT
:
502 self
.indent
= self
.indent
- 1
503 if self
.indent
== 0: raise EndOfBlock
, self
.last
504 elif type == tokenize
.NAME
and scol
== 0:
505 raise EndOfBlock
, self
.last
508 """Extract the block of code at the top of the given list of lines."""
510 tokenize
.tokenize(ListReader(lines
).readline
, BlockFinder().tokeneater
)
511 except EndOfBlock
, eob
:
512 return lines
[:eob
.args
[0]]
513 # Fooling the indent/dedent logic implies a one-line definition
516 def getsourcelines(object):
517 """Return a list of source lines and starting line number for an object.
519 The argument may be a module, class, method, function, traceback, frame,
520 or code object. The source code is returned as a list of the lines
521 corresponding to the object and the line number indicates where in the
522 original source file the first line of code was found. An IOError is
523 raised if the source code cannot be retrieved."""
524 lines
, lnum
= findsource(object)
526 if ismodule(object): return lines
, 0
527 else: return getblock(lines
[lnum
:]), lnum
+ 1
529 def getsource(object):
530 """Return the text of the source code for an object.
532 The argument may be a module, class, method, function, traceback, frame,
533 or code object. The source code is returned as a single string. An
534 IOError is raised if the source code cannot be retrieved."""
535 lines
, lnum
= getsourcelines(object)
536 return string
.join(lines
, '')
538 # --------------------------------------------------- class tree extraction
539 def walktree(classes
, children
, parent
):
540 """Recursive helper function for getclasstree()."""
542 classes
.sort(lambda a
, b
: cmp(a
.__name
__, b
.__name
__))
544 results
.append((c
, c
.__bases
__))
546 results
.append(walktree(children
[c
], children
, c
))
549 def getclasstree(classes
, unique
=0):
550 """Arrange the given list of classes into a hierarchy of nested lists.
552 Where a nested list appears, it contains classes derived from the class
553 whose entry immediately precedes the list. Each entry is a 2-tuple
554 containing a class and a tuple of its base classes. If the 'unique'
555 argument is true, exactly one entry appears in the returned structure
556 for each class in the given list. Otherwise, classes using multiple
557 inheritance and their descendants will appear multiple times."""
562 for parent
in c
.__bases
__:
563 if not parent
in children
:
564 children
[parent
] = []
565 children
[parent
].append(c
)
566 if unique
and parent
in classes
: break
569 for parent
in children
:
570 if parent
not in classes
:
572 return walktree(roots
, children
, None)
574 # ------------------------------------------------ argument list extraction
575 # These constants are from Python's compile.h.
576 CO_OPTIMIZED
, CO_NEWLOCALS
, CO_VARARGS
, CO_VARKEYWORDS
= 1, 2, 4, 8
579 """Get information about the arguments accepted by a code object.
581 Three things are returned: (args, varargs, varkw), where 'args' is
582 a list of argument names (possibly containing nested lists), and
583 'varargs' and 'varkw' are the names of the * and ** arguments or None."""
584 if not iscode(co
): raise TypeError, 'arg is not a code object'
587 nargs
= co
.co_argcount
588 names
= co
.co_varnames
589 args
= list(names
[:nargs
])
592 # The following acrobatics are for anonymous (tuple) arguments.
593 for i
in range(nargs
):
594 if args
[i
][:1] in ['', '.']:
595 stack
, remain
, count
= [], [], []
596 while step
< len(code
):
599 if op
>= dis
.HAVE_ARGUMENT
:
600 opname
= dis
.opname
[op
]
601 value
= ord(code
[step
]) + ord(code
[step
+1])*256
603 if opname
in ['UNPACK_TUPLE', 'UNPACK_SEQUENCE']:
606 elif opname
== 'STORE_FAST':
607 stack
.append(names
[value
])
608 remain
[-1] = remain
[-1] - 1
609 while remain
[-1] == 0:
612 stack
[-size
:] = [stack
[-size
:]]
614 remain
[-1] = remain
[-1] - 1
619 if co
.co_flags
& CO_VARARGS
:
620 varargs
= co
.co_varnames
[nargs
]
623 if co
.co_flags
& CO_VARKEYWORDS
:
624 varkw
= co
.co_varnames
[nargs
]
625 return args
, varargs
, varkw
627 def getargspec(func
):
628 """Get the names and default values of a function's arguments.
630 A tuple of four things is returned: (args, varargs, varkw, defaults).
631 'args' is a list of the argument names (it may contain nested lists).
632 'varargs' and 'varkw' are the names of the * and ** arguments or None.
633 'defaults' is an n-tuple of the default values of the last n arguments."""
634 if not isfunction(func
): raise TypeError, 'arg is not a Python function'
635 args
, varargs
, varkw
= getargs(func
.func_code
)
636 return args
, varargs
, varkw
, func
.func_defaults
638 def getargvalues(frame
):
639 """Get information about arguments passed into a particular frame.
641 A tuple of four things is returned: (args, varargs, varkw, locals).
642 'args' is a list of the argument names (it may contain nested lists).
643 'varargs' and 'varkw' are the names of the * and ** arguments or None.
644 'locals' is the locals dictionary of the given frame."""
645 args
, varargs
, varkw
= getargs(frame
.f_code
)
646 return args
, varargs
, varkw
, frame
.f_locals
650 return '(' + seq
[0] + ',)'
652 return '(' + string
.join(seq
, ', ') + ')'
654 def strseq(object, convert
, join
=joinseq
):
655 """Recursively walk a sequence, stringifying each element."""
656 if type(object) in [types
.ListType
, types
.TupleType
]:
657 return join(map(lambda o
, c
=convert
, j
=join
: strseq(o
, c
, j
), object))
659 return convert(object)
661 def formatargspec(args
, varargs
=None, varkw
=None, defaults
=None,
663 formatvarargs
=lambda name
: '*' + name
,
664 formatvarkw
=lambda name
: '**' + name
,
665 formatvalue
=lambda value
: '=' + repr(value
),
667 """Format an argument spec from the 4 values returned by getargspec.
669 The first four arguments are (args, varargs, varkw, defaults). The
670 other four arguments are the corresponding optional formatting functions
671 that are called to turn names and values into strings. The ninth
672 argument is an optional function to format the sequence of arguments."""
675 firstdefault
= len(args
) - len(defaults
)
676 for i
in range(len(args
)):
677 spec
= strseq(args
[i
], formatarg
, join
)
678 if defaults
and i
>= firstdefault
:
679 spec
= spec
+ formatvalue(defaults
[i
- firstdefault
])
681 if varargs
is not None:
682 specs
.append(formatvarargs(varargs
))
683 if varkw
is not None:
684 specs
.append(formatvarkw(varkw
))
685 return '(' + string
.join(specs
, ', ') + ')'
687 def formatargvalues(args
, varargs
, varkw
, locals,
689 formatvarargs
=lambda name
: '*' + name
,
690 formatvarkw
=lambda name
: '**' + name
,
691 formatvalue
=lambda value
: '=' + repr(value
),
693 """Format an argument spec from the 4 values returned by getargvalues.
695 The first four arguments are (args, varargs, varkw, locals). The
696 next four arguments are the corresponding optional formatting functions
697 that are called to turn names and values into strings. The ninth
698 argument is an optional function to format the sequence of arguments."""
699 def convert(name
, locals=locals,
700 formatarg
=formatarg
, formatvalue
=formatvalue
):
701 return formatarg(name
) + formatvalue(locals[name
])
703 for i
in range(len(args
)):
704 specs
.append(strseq(args
[i
], convert
, join
))
706 specs
.append(formatvarargs(varargs
) + formatvalue(locals[varargs
]))
708 specs
.append(formatvarkw(varkw
) + formatvalue(locals[varkw
]))
709 return '(' + string
.join(specs
, ', ') + ')'
711 # -------------------------------------------------- stack frame extraction
712 def getframeinfo(frame
, context
=1):
713 """Get information about a frame or traceback object.
715 A tuple of five things is returned: the filename, the line number of
716 the current line, the function name, a list of lines of context from
717 the source code, and the index of the current line within that list.
718 The optional second argument specifies the number of lines of context
719 to return, which are centered around the current line."""
720 if istraceback(frame
):
721 frame
= frame
.tb_frame
722 if not isframe(frame
):
723 raise TypeError, 'arg is not a frame or traceback object'
725 filename
= getsourcefile(frame
) or getfile(frame
)
726 lineno
= frame
.f_lineno
728 start
= lineno
- 1 - context
//2
730 lines
, lnum
= findsource(frame
)
734 start
= max(start
, 1)
735 start
= min(start
, len(lines
) - context
)
736 lines
= lines
[start
:start
+context
]
737 index
= lineno
- 1 - start
741 return (filename
, lineno
, frame
.f_code
.co_name
, lines
, index
)
743 def getlineno(frame
):
744 """Get the line number from a frame object, allowing for optimization."""
745 # FrameType.f_lineno is now a descriptor that grovels co_lnotab
746 return frame
.f_lineno
748 def getouterframes(frame
, context
=1):
749 """Get a list of records for a frame and all higher (calling) frames.
751 Each record contains a frame object, filename, line number, function
752 name, a list of lines of context, and index within the context."""
755 framelist
.append((frame
,) + getframeinfo(frame
, context
))
759 def getinnerframes(tb
, context
=1):
760 """Get a list of records for a traceback's frame and all lower frames.
762 Each record contains a frame object, filename, line number, function
763 name, a list of lines of context, and index within the context."""
766 framelist
.append((tb
.tb_frame
,) + getframeinfo(tb
, context
))
771 """Return the frame object for the caller's stack frame."""
774 except ZeroDivisionError:
775 return sys
.exc_info()[2].tb_frame
.f_back
777 if hasattr(sys
, '_getframe'): currentframe
= sys
._getframe
779 def stack(context
=1):
780 """Return a list of records for the stack above the caller's frame."""
781 return getouterframes(currentframe().f_back
, context
)
783 def trace(context
=1):
784 """Return a list of records for the stack below the current exception."""
785 return getinnerframes(sys
.exc_info()[2], context
)