diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 12:27:42 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-30 12:27:42 -0400 |
commit | 2e4d3e65e36df97ee4a7f443ccb02807be28fad6 (patch) | |
tree | 0978e1261040e534786dd5b648c39a6bd0466c79 /lib/sqlalchemy/dialects/postgresql/base.py | |
parent | f000161f242f6814d594b5ccf91f96d99490ae61 (diff) | |
download | sqlalchemy-2e4d3e65e36df97ee4a7f443ccb02807be28fad6.tar.gz |
- changelog + docs for pg8000 transaction isolation level
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index e2accfedb..42ec19c20 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -73,8 +73,15 @@ Valid values for ``isolation_level`` include: * ``REPEATABLE READ`` * ``SERIALIZABLE`` -The :mod:`~sqlalchemy.dialects.postgresql.psycopg2` dialect also offers the special level ``AUTOCOMMIT``. See -:ref:`psycopg2_isolation_level` for details. +The :mod:`~sqlalchemy.dialects.postgresql.psycopg2` and +:mod:`~sqlalchemy.dialects.postgresql.pg8000` dialects also offer the +special level ``AUTOCOMMIT``. + +.. seealso:: + + :ref:`psycopg2_isolation_level` + + :ref:`pg8000_isolation_level` .. _postgresql_schema_reflection: |