Lines Matching defs:stack
23 currentframe() - get the current stack frame
24 stack(), trace() - get info about frames on the stack or in a traceback
129 "stack",
501 co_stacksize virtual machine stack space required
1027 self.stack = []
1031 self.stack.append(node.name)
1032 self.stack.append('<locals>')
1034 self.stack.pop()
1035 self.stack.pop()
1040 self.stack.append(node.name)
1041 if self.qualname == '.'.join(self.stack):
1052 self.stack.pop()
1635 # -------------------------------------------------- stack frame extraction
1753 def stack(context=1):
1754 """Return a list of records for the stack above the caller's frame."""
1758 """Return a list of records for the stack below the current exception."""