# HG changeset patch # User Paul Boddie # Date 1238944559 -7200 # Node ID a395698033f1d0ca5eca5685efb04d398017804b # Parent 617f1f7f56ec93e5ce38bfc767a3cee67d3618de Revert context value changes since functions still need to work, and they probably won't work when coupled with themselves as contexts. diff -r 617f1f7f56ec -r a395698033f1 rsvp.py --- a/rsvp.py Sun Apr 05 03:41:21 2009 +0200 +++ b/rsvp.py Sun Apr 05 17:15:59 2009 +0200 @@ -325,7 +325,7 @@ # Instructions. def LoadConst(self): - self.value = self.operand, self.operand + self.value = None, self.operand # context of constant is not interesting def LoadName(self): frame = self.local_sp_stack[-1] @@ -478,7 +478,7 @@ def LoadContext(self): context, ref = self.value - self.value = context, context + self.value = None, context # context of context is not interesting def CheckFrame(self): operand = self.operand