# HG changeset patch # User Pierre-Yves David # Date 1431909947 25200 # Node ID 3ea8d6b5e6655d71c9efe42cc5c8c19f4481f9e6 # Parent 317333e0793c2efa334adbefc13ab010a5b1622c check-code: drop the 'isdisjoint' ban 'isdisjoint' is available in Python 2.6. The new lowest supported version. diff -r 317333e0793c -r 3ea8d6b5e665 contrib/check-code.py --- a/contrib/check-code.py Sun May 17 17:40:26 2015 -0700 +++ b/contrib/check-code.py Sun May 17 17:45:47 2015 -0700 @@ -245,7 +245,6 @@ # (r'^\s*print\s+', "avoid using print in core and extensions"), (r'[\x80-\xff]', "non-ASCII character literal"), (r'("\')\.format\(', "str.format() not available in Python 2.4"), - (r'\.isdisjoint\(', "set.isdisjoint not available in Python 2.4"), (r'(?