##// END OF EJS Templates
contrib: inform import checker that __builtin__ is a thing
Augie Fackler -
r33895:c856cb1c default
parent child Browse files
Show More
@@ -220,6 +220,7 b' def list_stdlib_modules():'
220 # consider them stdlib.
220 # consider them stdlib.
221 for m in ['msvcrt', '_winreg']:
221 for m in ['msvcrt', '_winreg']:
222 yield m
222 yield m
223 yield '__builtin__'
223 yield 'builtins' # python3 only
224 yield 'builtins' # python3 only
224 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
225 for m in 'fcntl', 'grp', 'pwd', 'termios': # Unix only
225 yield m
226 yield m
General Comments 0
You need to be logged in to leave comments. Login now