-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not support Python 3.6 #29
Comments
@Axure did you find any solution? |
Python 3.6 bytecode is very different. It uses two bytes for every instruction instead of a mix of one and three byte instructions. For more info on this change see: https://bugs.python.org/issue26647 |
I am working on py36 support here: https://github.com/vrthra/byterun/tree/py36 The byte code changes are easily fixable (in the branch above), but adding new opcodes is taking time. |
@vrthra See https://github.com/rocky/x-python/blob/master/xpython/byteop/byteop35.py https://github.com/rocky/x-python/blob/master/xpython/byteop/byteop36.py and https://github.com/rocky/x-python/blob/master/xpython/byteop/byteop37.py for most of the new byteops. 3.5 |
It throws
IndexError: tuple index out of range
.Actually, the
intArg
has become incredibly large, like 23040. I guess the format of the bytecode has changed.The text was updated successfully, but these errors were encountered: