2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 05:22:45 +00:00

Output "Done" on successful completion, in line with the other Python scripts here

[SVN r20377]
This commit is contained in:
Raoul Gough
2003-10-14 12:23:35 +00:00
parent 82b1fd637d
commit 278bb1a861
8 changed files with 24 additions and 8 deletions

View File

@@ -32,4 +32,6 @@ if __name__ == '__main__':
__doc__ += common_doctest_string
print 'running...'
import sys
sys.exit(run()[0])
status = run()[0]
if (status == 0): print "Done."
sys.exit(status)