MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / push

Method push

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

Source from the content-addressed store, hash-verified

85 self.frame[key] = value
86
87 def push(self):
88 new_frame = Frame()
89 new_frame.previous = self.frame
90 self.frame = new_frame
91
92 def pop(self):
93 top = self.frame

Callers 2

test_stack_operationsFunction · 0.95
test_stack_copyFunction · 0.95

Calls 1

FrameClass · 0.85

Tested by 2

test_stack_operationsFunction · 0.76
test_stack_copyFunction · 0.76