##// END OF EJS Templates
contrib: always treat importlib.* as stdlib
Augie Fackler -
r33898:b4294ff1 default
parent child Browse files
Show More
@@ -222,6 +222,9 b' def list_stdlib_modules():'
222 222 yield m
223 223 yield '__builtin__'
224 224 yield 'builtins' # python3 only
225 yield 'importlib.abc' # python3 only
226 yield 'importlib.machinery' # python3 only
227 yield 'importlib.util' # python3 only
225 228 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
226 229 yield m
227 230 for m in 'cPickle', 'datetime': # in Python (not C) on PyPy
General Comments 0
You need to be logged in to leave comments. Login now