summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/psycopg2.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-04-30 15:00:48 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-04-30 15:00:48 -0400
commitc4bb1f7ba27aa19e1228f85419208d547ce161e6 (patch)
tree516f79e7ff8ec82ec4242ad98c6e2deb3e24dd82 /lib/sqlalchemy/dialects/postgresql/psycopg2.py
parent1f58d4c2e407fee2c3625ec50242470e638127be (diff)
downloadsqlalchemy-c4bb1f7ba27aa19e1228f85419208d547ce161e6.tar.gz
place docs for DBAPI-agnostic transaction_isolation setting for sqlite, pg [ticket:1784]
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/psycopg2.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/psycopg2.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
index 2a51a7239..6ae6c6c08 100644
--- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py
+++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
@@ -25,9 +25,6 @@ psycopg2-specific keyword arguments which are accepted by :func:`~sqlalchemy.cre
at a time are fetched over the wire to reduce conversational overhead.
* *use_native_unicode* - Enable the usage of Psycopg2 "native unicode" mode per connection. True
by default.
-* *isolation_level* - Sets the transaction isolation level for each transaction
- within the engine. Valid isolation levels are `READ_COMMITTED`,
- `READ_UNCOMMITTED`, `REPEATABLE_READ`, and `SERIALIZABLE`.
Transactions
------------