-
-
Notifications
You must be signed in to change notification settings - Fork 32
Python 2 to 3 #179
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 2 to 3 #179
Conversation
Issues
======
+ Solved 189
- Added 118
Coverage increased per file
===========================
+ rethinkdb/tornado_net/net_tornado.py 1
+ rethinkdb/errors.py 1
Coverage decreased per file
===========================
- rethinkdb/_dump.py -1
- rethinkdb/net.py -1
- rethinkdb/_export.py -1
- rethinkdb/_index_rebuild.py -1
Clones added
============
- rethinkdb/asyncio_net/net_asyncio.py 1
- rethinkdb/_dump.py 1
- rethinkdb/_export.py 1
- rethinkdb/trio_net/net_trio.py 1
- rethinkdb/ast.py 2
See the complete overview on Codacy |
* Upgrade @asyncio.coroutine to async * 🚧 2 tests do not pass yet * 🚧 1 test error (nursery not found WTF) and 1 failing but don't know why..yet * Remove commented code * Use ImportError instead of Exception Co-authored-by: lsabi <[email protected]> Co-authored-by: Boros Gábor <[email protected]>
Import ABC from collections.abc for Python 3.
… into python-2-to-3
wait, the package was not python3-ready? why was that not excluded in the |
@gabor-boros could you change |
@ShadowJonathan The package is already python 3 compatible. This PR is about to make it Python 3 only. Whenever the PR is in that state, I'll make sure that setup.py has the right required python version. |
Reason for the change
#168
Description
Make the code Python 3.6+ compatible (and drop python2 support)