-
Notifications
You must be signed in to change notification settings - Fork 92
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
Python 3 support #10
Comments
Any word on this? I'd like to see it merged if possible. If there is an issue let me know, I'd be happy to accommodate. |
Thanks Eric. I'll check this, as soon as possible. Have you tested it in Python 2? I believe print(a,b) -that is, two or more things with a comma- is broken in Python 2. |
@rmcantin , This gets interpreted differently between Py2 and Py3 but does not break anything.
See... they both work fine but get interpreted a bit differently.
If you want the exact same behavior on 2 and 3 you can import
|
There isn't much Python code in this repo at all, just demos really.
The interface is written in Cython which emits code that works with Python 2 or 3.
Because of this, it is trivial to support both 2 and 3 from the same code base.
Just some changes to print statements within the demos, and a simple bytes/strings conversion on the bopt parameters.
The text was updated successfully, but these errors were encountered: