--- a/contrib/check-code.py Sat Nov 16 15:46:29 2013 -0500
+++ b/contrib/check-code.py Tue Jan 07 22:28:45 2014 +0100
@@ -225,7 +225,7 @@
(r'^\s*except.* as .*:', "except as not available in Python 2.4"),
(r'^\s*os\.path\.relpath', "relpath not available in Python 2.4"),
(r'(?<!def)\s+(any|all|format)\(',
- "any/all/format not available in Python 2.4"),
+ "any/all/format not available in Python 2.4", 'no-py24'),
(r'(?<!def)\s+(callable)\(',
"callable not available in Python 3, use getattr(f, '__call__', None)"),
(r'if\s.*\selse', "if ... else form not available in Python 2.4"),