##// END OF EJS Templates
tests: treat `select` as a built-in module on Windows...
Matt Harbison -
r53080:3ba998d7 stable
parent child Browse files
Show More
@@ -231,7 +231,7 def list_stdlib_modules():
231 yield 'importlib.machinery' # python3 only
231 yield 'importlib.machinery' # python3 only
232 yield 'importlib.util' # python3 only
232 yield 'importlib.util' # python3 only
233 yield 'packaging.version'
233 yield 'packaging.version'
234 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
234 for m in 'fcntl', 'grp', 'pwd', 'select', 'termios': # Unix only
235 yield m
235 yield m
236 for m in 'cPickle', 'datetime': # in Python (not C) on PyPy
236 for m in 'cPickle', 'datetime': # in Python (not C) on PyPy
237 yield m
237 yield m
General Comments 0
You need to be logged in to leave comments. Login now