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.
Created attachment 423273 [details] fix-multiline-string-variable-definition_v1
Committed r274481: <https://commits.webkit.org/r274481> All reviewed patches have been landed. Closing bug and clearing flags on attachment 423273 [details].
<rdar://problem/75479145>