Ticket #2161: blanklines.diff
File blanklines.diff, 764 bytes (added by , 18 years ago) |
---|
-
django/core/management.py
331 331 # Some backends can't execute more than one SQL statement at a time, 332 332 # so split into separate statements. 333 333 sql_expr = re.compile( 334 r"""( # each statement is... 334 r"""( # each statement... 335 (?:[^\n\r;]) # starts with something other than \n, \r, 336 # or end statement, then has... 335 337 (?: # one or more chunks of ... 336 338 (?:[^;'"]+) # not the end of a statement or start of a quote 337 339 | (?:'[^']*') # something in single quotes