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

Method copy

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

Source from the content-addressed store, hash-verified

41 self.locals[key] = value
42
43 def copy(self) -> Frame:
44 l = self.locals.copy()
45 frame_copy = Frame()
46 frame_copy.locals = l.copy()
47 return frame_copy
48
49 @property
50 def variables(self) -> List[str]:

Callers 7

reset_pluginsFunction · 0.45
run_in_venvFunction · 0.45
test_apipFunction · 0.45
copyMethod · 0.45
_visit_nodeMethod · 0.45
get_pathsMethod · 0.45
get_pathsMethod · 0.45

Calls 1

FrameClass · 0.85

Tested by 3

reset_pluginsFunction · 0.36
run_in_venvFunction · 0.36
test_apipFunction · 0.36