From: Jeff Horemans Date: Wed, 7 Aug 2024 11:57:55 +0000 (+0200) Subject: Removed superflous comment. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=268bf6440e7c5259dededc85eae11e3d1a5636e9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Removed superflous comment. --- diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py index b86ee24fb1..16b8b8cc90 100644 --- a/lib/sqlalchemy/dialects/sqlite/base.py +++ b/lib/sqlalchemy/dialects/sqlite/base.py @@ -2626,11 +2626,6 @@ class SQLiteDialect(default.DefaultDialect): CHECK_PATTERN = r"(?:CONSTRAINT ([^\n^\t]+) +)?CHECK *\( *(.+?) *\)(?:, ?\n|\n) *" cks = [] - # NOTE: we aren't using re.S here because we actually are - # taking advantage of each CHECK constraint being all on one - # line in the table definition in order to delineate. This - # necessarily makes assumptions as to how the CREATE TABLE - # was emitted. for match in re.finditer(CHECK_PATTERN, table_data or "", re.I|re.S): name = match.group(1)