From: Federico Caselli Date: Tue, 8 Sep 2020 21:09:21 +0000 (+0200) Subject: Fix typo in :paramref:`_engine.create_engine.isolation_level` names X-Git-Tag: rel_1_4_0b1~120^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17f7faf3df8dc3d30e632c60a5d69d342876ad3d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo in :paramref:`_engine.create_engine.isolation_level` names Fixes: #5563 Change-Id: I29204fdf679d750c66ed17daf70bc8d7cb1b7f65 --- diff --git a/lib/sqlalchemy/engine/create.py b/lib/sqlalchemy/engine/create.py index e31f3a12dc..d6f1cb6575 100644 --- a/lib/sqlalchemy/engine/create.py +++ b/lib/sqlalchemy/engine/create.py @@ -254,8 +254,8 @@ def create_engine(url, **kwargs): :param isolation_level: this string parameter is interpreted by various dialects in order to affect the transaction isolation level of the database connection. The parameter essentially accepts some subset of - these string arguments: ``"SERIALIZABLE"``, ``"REPEATABLE_READ"``, - ``"READ_COMMITTED"``, ``"READ_UNCOMMITTED"`` and ``"AUTOCOMMIT"``. + these string arguments: ``"SERIALIZABLE"``, ``"REPEATABLE READ"``, + ``"READ COMMITTED"``, ``"READ UNCOMMITTED"`` and ``"AUTOCOMMIT"``. Behavior here varies per backend, and individual dialects should be consulted directly.