]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Revert "fix post-production typo for #9174"
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 30 Jan 2023 17:21:59 +0000 (12:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 30 Jan 2023 17:21:59 +0000 (12:21 -0500)
This reverts commit 3b60c3f53eab8ee5896b3fde525bcf31d4233658.

some scratch code for isolation levels got pushed :(

lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/sql/selectable.py

index b33af3b6144beea722242916f8dc24d990b99acf..c1de13221b08d49c41da7fef4559035679ed2af8 100644 (file)
@@ -267,10 +267,6 @@ IsolationLevel = Literal[
     "READ COMMITTED",
     "READ UNCOMMITTED",
     "AUTOCOMMIT",
-    "AUTOCOMMIT+SERIALIZABLE",
-    "AUTOCOMMIT+REPEATABLE READ",
-    "AUTOCOMMIT+READ COMMITTED",
-    "AUTOCOMMIT+READ UNCOMMITTED",
 ]
 
 
index f43e6b43f82bd8daf168451399d2dd257c85b8fd..78fc7b1b79053a87478386a34b78e48dccd1bf21 100644 (file)
@@ -3863,7 +3863,7 @@ class GenerativeSelect(SelectBase, Generative):
         :param of: SQL expression or list of SQL expression elements,
          (typically :class:`_schema.Column` objects or a compatible expression,
          for some backends may also be a table expression) which will render
-         into a ``FOR UPDATE OF`` clause; supported by PostgreSQL, Oracle, some
+         into a ``FOR UPDATE OF`` clause; supported by PostgreSQL Oracle, some
          MySQL versions and possibly others. May render as a table or as a
          column depending on backend.