diff -r 81873bb2a01d -r fbdbff1b486a contrib/import-checker.py --- a/contrib/import-checker.py Wed Apr 08 22:23:51 2015 -0400 +++ b/contrib/import-checker.py Wed Apr 08 22:31:50 2015 -0400 @@ -61,6 +61,8 @@ for m in 'ctypes', 'email': yield m yield 'builtins' # python3 only + for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only + yield m stdlib_prefixes = set([sys.prefix, sys.exec_prefix]) # We need to supplement the list of prefixes for the search to work # when run from within a virtualenv.