##// END OF EJS Templates
import-checker: force 'fcntl', 'grp', 'pwd', and 'termios' to stdlib modules...
Matt Harbison -
r24669:fbdbff1b default
parent child Browse files
Show More
@@ -61,6 +61,8 b' def list_stdlib_modules():'
61 61 for m in 'ctypes', 'email':
62 62 yield m
63 63 yield 'builtins' # python3 only
64 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
65 yield m
64 66 stdlib_prefixes = set([sys.prefix, sys.exec_prefix])
65 67 # We need to supplement the list of prefixes for the search to work
66 68 # when run from within a virtualenv.
General Comments 0
You need to be logged in to leave comments. Login now