Skip to content

Commit 4e3b951

Browse files
delete dead code
1 parent 97f75ca commit 4e3b951

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

pixie/vm/code.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -484,18 +484,6 @@ def invoke_with(self, args, this_fn):
484484
def invoke(self, args):
485485
return self.deref().invoke(args)
486486

487-
class bindings(py_object):
488-
def __init__(self, *args):
489-
self._args = list(args)
490-
491-
def __enter__(self):
492-
_dynamic_vars.push_binding_frame()
493-
for x in range(0, len(self._args), 2):
494-
self._args[x].set_value(self._args[x + 1])
495-
496-
def __exit__(self, exc_type, exc_val, exc_tb):
497-
_dynamic_vars.pop_binding_frame()
498-
499487

500488
class Refer(py_object):
501489
def __init__(self, ns, refer_syms=[], refer_all=False):

0 commit comments

Comments
 (0)