Thanks to visit codestin.com Credit goes to github.com
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 6d63adf commit 6af3b37Copy full SHA for 6af3b37
1 file changed
Lib/dis.py
@@ -150,6 +150,7 @@ def jabs_op(name, op):
150
def_op('ROT_TWO', 2)
151
def_op('ROT_THREE', 3)
152
def_op('DUP_TOP', 4)
153
+def_op('ROT_FOUR', 5)
154
155
def_op('UNARY_POSITIVE', 10)
156
def_op('UNARY_NEGATIVE', 11)
@@ -228,7 +229,7 @@ def jabs_op(name, op):
228
229
name_op('DELETE_ATTR', 96) # ""
230
name_op('STORE_GLOBAL', 97) # ""
231
name_op('DELETE_GLOBAL', 98) # ""
-
232
+def_op('DUP_TOPX', 99) # number of items to duplicate
233
def_op('LOAD_CONST', 100) # Index in const list
234
hasconst.append(100)
235
name_op('LOAD_NAME', 101) # Index in name list
0 commit comments