##// END OF EJS Templates
import-checker: allow *.pyd based stdlib modules...
Matt Harbison -
r24668:81873bb2 default
parent child Browse files
Show More
@@ -90,7 +90,8 b' def list_stdlib_modules():'
90 90 for name in files:
91 91 if name == '__init__.py':
92 92 continue
93 if not (name.endswith('.py') or name.endswith('.so')):
93 if not (name.endswith('.py') or name.endswith('.so')
94 or name.endswith('.pyd')):
94 95 continue
95 96 full_path = os.path.join(top, name)
96 97 if 'site-packages' in full_path:
General Comments 0
You need to be logged in to leave comments. Login now