diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-09-08 22:08:22 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-09-08 22:08:22 +0000 |
| commit | 73fda6d1a85b6245675a05381d79d65685beab18 (patch) | |
| tree | 777b679967881731e0f3e85dd502948865b6fd9e /lib/sqlalchemy/engine | |
| parent | 721b00e7531fe61376fb0e5eb258c5ee56c9266f (diff) | |
| parent | 17f7faf3df8dc3d30e632c60a5d69d342876ad3d (diff) | |
| download | sqlalchemy-73fda6d1a85b6245675a05381d79d65685beab18.tar.gz | |
Merge "Fix typo in :paramref:`_engine.create_engine.isolation_level` names"
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/create.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/create.py b/lib/sqlalchemy/engine/create.py index e31f3a12d..d6f1cb657 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. |
