-
Notifications
You must be signed in to change notification settings - Fork 42
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
Syntax error when installing pysqlcipher #11
Comments
Any interest in this? @kalikaneko |
out of curiosity, how do python developers migrating to Python 3 deal with this? the If you use |
i am just learning a little python for the first time, but maybe:
or
both will be the same in python 2 and python 3 |
Hi. Apart from fixing this trivial syntax error, porting to python 3 might not be trivial. |
the right way to deal with this should be import the print function from future module, and keep up with py3 syntax if you want to try a patch and see whether the thing breaks further on: from __future__ import print_function
...
print(foo, bar) however, I'm doing research to see how much would it take to port the module to py3. For the moment, I do not see python3-sqlite packaged, and the original pysqlite from which I forked this project does not state its python version compatibility table. @dionyziz however we're right now a bit busy with releasing bitmask 0.7, so this might have to wait a little. sorry for the delay. |
Closing since it's a duplicate of #3 |
When installing pysqlcipher in Python 3 on mac using pip for OpenBazaar, I get the following error:
The text was updated successfully, but these errors were encountered: