File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ func init() {
54
54
jumpTable [BINARY_OR ] = do_BINARY_OR
55
55
jumpTable [INPLACE_POWER ] = do_INPLACE_POWER
56
56
jumpTable [GET_ITER ] = do_GET_ITER
57
+ jumpTable [STORE_LOCALS ] = do_STORE_LOCALS
57
58
jumpTable [PRINT_EXPR ] = do_PRINT_EXPR
58
59
jumpTable [LOAD_BUILD_CLASS ] = do_LOAD_BUILD_CLASS
59
60
jumpTable [YIELD_FROM ] = do_YIELD_FROM
@@ -137,5 +138,5 @@ func init() {
137
138
jumpTable [SET_ADD ] = do_SET_ADD
138
139
jumpTable [MAP_ADD ] = do_MAP_ADD
139
140
140
- jumpTable [LOAD_CLASSDEREF ] = do_LOAD_CLASSDEREF
141
+ // jumpTable[LOAD_CLASSDEREF] = do_LOAD_CLASSDEREF
141
142
}
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ const (
46
46
BINARY_OR = 66
47
47
INPLACE_POWER = 67
48
48
GET_ITER = 68
49
+ STORE_LOCALS = 69
49
50
PRINT_EXPR = 70
50
51
LOAD_BUILD_CLASS = 71
51
52
YIELD_FROM = 72
@@ -135,7 +136,7 @@ const (
135
136
SET_ADD = 146
136
137
MAP_ADD = 147
137
138
138
- LOAD_CLASSDEREF = 148
139
+ // LOAD_CLASSDEREF = 148 // New in Pytohon 3.4
139
140
140
141
// EXCEPT_HANDLER is a special, implicit block type which is
141
142
// created when entering an except handler. It is not an
@@ -180,6 +181,7 @@ var NameToOpCode = map[string]byte{
180
181
"BINARY_OR" : 66 ,
181
182
"INPLACE_POWER" : 67 ,
182
183
"GET_ITER" : 68 ,
184
+ "STORE_LOCALS" : 69 ,
183
185
"PRINT_EXPR" : 70 ,
184
186
"LOAD_BUILD_CLASS" : 71 ,
185
187
"YIELD_FROM" : 72 ,
You can’t perform that action at this time.
0 commit comments