We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e4d79a commit 6b8c802Copy full SHA for 6b8c802
vm/eval.go
@@ -562,7 +562,7 @@ func do_STORE_MAP(vm *Vm, arg int32) {
562
563
// Pushes a reference to the local co_varnames[var_num] onto the stack.
564
func do_LOAD_FAST(vm *Vm, var_num int32) {
565
- vm.NotImplemented("LOAD_FAST", var_num)
+ vm.PUSH(vm.locals[string(vm.co.Varnames[var_num].(py.String))])
566
}
567
568
// Stores TOS into the local co_varnames[var_num].
0 commit comments