Commit a3683b3e authored by Kevin Modzelewski's avatar Kevin Modzelewski

Fix to try_importing_all.py tool

(ignore things that are clearly not importable)
parent c6d25bd4
......@@ -20,6 +20,8 @@ total = 0
print len(modules)
f = open("failures.txt", 'w')
for m in modules:
if '-' in m:
continue
p = subprocess.Popen([EXE_PATH, "-q"], stdin=subprocess.PIPE, stderr=subprocess.PIPE)
# We need to make pyston exit with a non-zero return code if an exception was thrown,
# so use this little dance. If the import succeeds, then we call sys.exit(0), otherwise
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment