Traceback (most recent call last):
File "python.py", line 176, in <module>
""")
File "python.py", line 166, in exec_python
vm_value = vm.run_code(code)
File "/usr/lib/python3.6/site-packages/byterun/pyvm2.py", line 145, in run_code
val = self.run_frame(frame)
File "/usr/lib/python3.6/site-packages/byterun/pyvm2.py", line 318, in run_frame
byteName, arguments, opoffset = self.parse_byte_and_args()
File "/usr/lib/python3.6/site-packages/byterun/pyvm2.py", line 182, in parse_byte_and_args
arg = f.f_code.co_consts[intArg]
IndexError: tuple index out of range
It throws
IndexError: tuple index out of range.Actually, the
intArghas become incredibly large, like 23040. I guess the format of the bytecode has changed.