##// END OF EJS Templates
check-code: allow with statements...
Pierre-Yves David -
r25030:33298a8b default
parent child Browse files
Show More
@@ -248,7 +248,6 b' pypats = ['
248 # (r'^\s*print\s+', "avoid using print in core and extensions"),
248 # (r'^\s*print\s+', "avoid using print in core and extensions"),
249 (r'[\x80-\xff]', "non-ASCII character literal"),
249 (r'[\x80-\xff]', "non-ASCII character literal"),
250 (r'("\')\.format\(', "str.format() not available in Python 2.4"),
250 (r'("\')\.format\(', "str.format() not available in Python 2.4"),
251 (r'^\s*with\s+', "with not available in Python 2.4"),
252 (r'\.isdisjoint\(', "set.isdisjoint not available in Python 2.4"),
251 (r'\.isdisjoint\(', "set.isdisjoint not available in Python 2.4"),
253 (r'^\s*os\.path\.relpath', "relpath not available in Python 2.4"),
252 (r'^\s*os\.path\.relpath', "relpath not available in Python 2.4"),
254 (r'(?<!def)\s+(any|all|format)\(',
253 (r'(?<!def)\s+(any|all|format)\(',
General Comments 0
You need to be logged in to leave comments. Login now