Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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_operations
Function · 0.95
gather_aura_information
Function · 0.80
sort
Method · 0.80
_visit_node
Method · 0.80
_visit_node
Method · 0.80
from_uri
Method · 0.80
output_diff
Method · 0.80
create_child
Method · 0.80
Calls
no outgoing calls
Tested by
1
test_stack_operations
Function · 0.76