]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Removed superflous comment.
authorJeff Horemans <jeff.horemans@vortex-financials.be>
Wed, 7 Aug 2024 11:57:55 +0000 (13:57 +0200)
committerJeff Horemans <jeff.horemans@vortex-financials.be>
Wed, 7 Aug 2024 11:57:55 +0000 (13:57 +0200)
lib/sqlalchemy/dialects/sqlite/base.py

index b86ee24fb1ec17af929b27f6930f44e3959513dc..16b8b8cc909fc4c446e3c0b05f0c440d9406a934 100644 (file)
@@ -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)