Mercurial > hg
changeset 10291:61c93743fae0
check-code: del isn't a function
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 28 Jan 2010 22:44:54 -0600 |
parents | 7cc60de189d7 |
children | ea7a14ca118a |
files | contrib/check-code.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/check-code.py Thu Jan 28 22:44:45 2010 -0600 +++ b/contrib/check-code.py Thu Jan 28 22:44:54 2010 -0600 @@ -71,6 +71,7 @@ (r'^\s*(if|while|def|class|except|try)\s[^[]*:\s*[^\]#\s]+', "linebreak after :"), (r'class\s[^(]:', "old-style class, use class foo(object)"), + (r'^\s+del\(', "del isn't a function"), (r'^\s+except\(', "except isn't a function"), # (r'class\s[A-Z][^\(]*\((?!Exception)', # "don't capitalize non-exception classes"),