diff -r 532fa12033e1 -r bc3b48b0f5c8 contrib/import-checker.py --- a/contrib/import-checker.py Tue Dec 24 19:10:04 2013 -0500 +++ b/contrib/import-checker.py Wed Jan 01 17:57:48 2014 -0500 @@ -71,9 +71,11 @@ else: stdlib_prefixes.add(dirname) for libpath in sys.path: - # We want to walk everything in sys.path that starts with something - # in stdlib_prefixes. - if not any(libpath.startswith(p) for p in stdlib_prefixes): + # We want to walk everything in sys.path that starts with + # something in stdlib_prefixes. check-code suppressed because + # the ast module used by this script implies the availability + # of any(). + if not any(libpath.startswith(p) for p in stdlib_prefixes): # no-check-code continue if 'site-packages' in libpath: continue