Mercurial > hg-stable
changeset 11345:4b81f82b03e3
check-code: reformat long lines
author | Martin Geisler <mg@aragost.com> |
---|---|
date | Tue, 15 Jun 2010 10:01:55 +0200 |
parents | 32a9744acf1e |
children | e740f36cfb4b |
files | contrib/check-code.py |
diffstat | 1 files changed, 10 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/check-code.py Tue Jun 15 10:00:07 2010 +0200 +++ b/contrib/check-code.py Tue Jun 15 10:01:55 2010 +0200 @@ -92,14 +92,19 @@ (r'[\x80-\xff]', "non-ASCII character literal"), (r'("\')\.format\(', "str.format() not available in Python 2.4"), (r'^\s*with\s+', "with not available in Python 2.4"), - (r'(?<!def)\s+(any|all|format)\(', "any/all/format not available in Python 2.4"), + (r'(?<!def)\s+(any|all|format)\(', + "any/all/format not available in Python 2.4"), (r'if\s.*\selse', "if ... else form not available in Python 2.4"), (r'([\(\[]\s\S)|(\S\s[\)\]])', "gratuitous whitespace in () or []"), # (r'\s\s=', "gratuitous whitespace before ="), - (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=)\S', "missing whitespace around operator"), - (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=)\s', "missing whitespace around operator"), - (r'\s(\+=|-=|!=|<>|<=|>=|<<=|>>=)\S', "missing whitespace around operator"), - (r'[^+=*!<>&| -](\s=|=\s)[^= ]', "wrong whitespace around ="), + (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=)\S', + "missing whitespace around operator"), + (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=)\s', + "missing whitespace around operator"), + (r'\s(\+=|-=|!=|<>|<=|>=|<<=|>>=)\S', + "missing whitespace around operator"), + (r'[^+=*!<>&| -](\s=|=\s)[^= ]', + "wrong whitespace around ="), (r'raise Exception', "don't raise generic exceptions"), (r'ui\.(status|progress|write|note)\([\'\"]x', "warning: unwrapped ui message"),