Commit dbede1d8 authored by Evan Simpson's avatar Evan Simpson

Fixed bytecode problem with short-circuit booleans

parent 65c1e094
......@@ -62,7 +62,9 @@ class Munge_window:
rcode = map(apply, rcode[0], rcode[1])
if at is None:
at = opn
self.code[at:at]=rcode
self.code[at + 1:at + 1] = [self.code[at]]
self.code[at + 1:at + 1] = rcode
del self.code[at]
self.opn = opn + len(rcode)
return rcode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment