MCPcopy Index your code
hub / github.com/SourceCode-AI/aura / pop

Method pop

aura/stack.py:92–98  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

90 self.frame = new_frame
91
92 def pop(self):
93 top = self.frame
94 if top.previous is None:
95 raise ValueError("Can't pop top frame")
96
97 self.frame = top.previous
98 del top
99
100 def copy(self):
101 frames = []

Callers 8

test_stack_operationsFunction · 0.95
gather_aura_informationFunction · 0.80
sortMethod · 0.80
_visit_nodeMethod · 0.80
_visit_nodeMethod · 0.80
from_uriMethod · 0.80
output_diffMethod · 0.80
create_childMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_stack_operationsFunction · 0.76