From: Yeongbae Jeon Date: Sat, 9 Nov 2024 16:49:20 +0000 (+0900) Subject: Fix source comment/doc typos (#12072) X-Git-Tag: rel_2_0_37~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53f500ce274d30162e1246b455f18871db31d7b6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix source comment/doc typos (#12072) minor spelling corrections in comments and doc (cherry picked from commit ef23611a6bf8358dd05e0fc13384f1eb1925e1ff) --- diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py index d42a3138bc..9b769265fa 100644 --- a/lib/sqlalchemy/engine/default.py +++ b/lib/sqlalchemy/engine/default.py @@ -254,7 +254,7 @@ class DefaultDialect(Dialect): default_schema_name: Optional[str] = None # indicates symbol names are - # UPPERCASEd if they are case insensitive + # UPPERCASED if they are case insensitive # within the database. # if this is True, the methods normalize_name() # and denormalize_name() must be provided. diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py index 17a133f27a..6696a78706 100644 --- a/lib/sqlalchemy/engine/interfaces.py +++ b/lib/sqlalchemy/engine/interfaces.py @@ -1117,7 +1117,7 @@ class Dialect(EventTarget): supports_constraint_comments: bool """Indicates if the dialect supports comment DDL on constraints. - .. versionadded: 2.0 + .. versionadded:: 2.0 """ _has_events = False @@ -2498,7 +2498,7 @@ class Dialect(EventTarget): ``REPEATABLE READ``. isolation level names will have underscores converted to spaces before being passed along to the dialect. * The names for the four standard isolation names to the extent that - they are supported by the backend should be ``READ UNCOMMITTED`` + they are supported by the backend should be ``READ UNCOMMITTED``, ``READ COMMITTED``, ``REPEATABLE READ``, ``SERIALIZABLE`` * if the dialect supports an autocommit option it should be provided using the isolation level name ``AUTOCOMMIT``.