# HG changeset patch # User Matt Mackall # Date 1264740294 21600 # Node ID 61c93743fae0b28328db494115587648808b0f3d # Parent 7cc60de189d77fcad06a4061b80cc36657e17662 check-code: del isn't a function diff -r 7cc60de189d7 -r 61c93743fae0 contrib/check-code.py --- 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"),