rethinkdb / docs

RethinkDB documentation
http://rethinkdb.com/docs
Apache License 2.0
117 stars 167 forks source link

RethinkDB python #1234

Closed ouroboroscoding closed 5 years ago

ouroboroscoding commented 5 years ago

The documentation is no longer correct. As of version 2.4.1 of the python driver this:

import rethinkdb as r

No longer works as expected. The driver docs on pypi state you need to do this instead.

from rethinkdb import RethinkDB r = RethinkDB()

Except, this only fixes one problem by introducing a second one, as references to something like r.errors.RqlDriverError, or r.errors.ReqlOpFailedError, etc, will no longer work and are in fact innaccesible with the suggested fix.

srh commented 5 years ago

Noted. This looks like a serious issue.

gabor-boros commented 5 years ago

@srh and @ouroboroscoding I'll adjust the python related documentation on Thursday.

gabor-boros commented 5 years ago

The issue has been fixed by @eqladios on 18th of March and deployed to production around a month ago.