##// END OF EJS Templates
import-checker: force 'ctype.util' to stdlib module...
Matt Harbison -
r27508:b2226fae default
parent child Browse files
Show More
@@ -180,7 +180,7 b' def list_stdlib_modules():'
180 for m in ['msvcrt', '_winreg']:
180 for m in ['msvcrt', '_winreg']:
181 yield m
181 yield m
182 # These get missed too
182 # These get missed too
183 for m in 'ctypes', 'email', 'multiprocessing':
183 for m in 'ctypes', 'ctypes.util', 'email', 'multiprocessing':
184 yield m
184 yield m
185 yield 'builtins' # python3 only
185 yield 'builtins' # python3 only
186 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
186 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
General Comments 0
You need to be logged in to leave comments. Login now