Kaydet (Commit) 1703cf66 authored tarafından Fred Drake's avatar Fred Drake

Before calling traceback.print_exc(), call sys.stdout.flush(). This makes

it much easier to see where things went wrong.
üst 279aa6ca
......@@ -497,6 +497,7 @@ for name in names:
except Exception, e:
works = 0
print "Test Failed: ", name
sys.stdout.flush()
traceback.print_exception(*sys.exc_info())
print `e`
Node.allnodes = {}
......
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