[Webkit-unassigned] [Bug 223225] New: [prepare-ChangeLog] Assigning a multiline comment to a variable breaks change detection

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 15 17:19:42 PDT 2021


https://bugs.webkit.org/show_bug.cgi?id=223225

            Bug ID: 223225
           Summary: [prepare-ChangeLog] Assigning a multiline comment to a
                    variable breaks change detection
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: dean_johnson at apple.com

As of bug 182405 / http://trac.webkit.org/changeset/228131/webkit, prepare-ChangeLog fails to correctly detect changes to a Python file when a multiline comment is defined and assigned to a variable.

Failure case:
TABLE_CSS_STYLING = '''
<style>
...  (Unimportant) ...
</style>
'''

Changing the TABLE_CSS_STYLING definition makes prepare-ChangeLog work again:
TABLE_CSS_STYLING = \
'''
<style>
...  (Unimportant) ...
</style>
'''

prepare-ChangeLog should support multiline string assignment on the same line.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210316/96a8e0f7/attachment-0001.htm>


More information about the webkit-unassigned mailing list