Added psyco option, -O

This commit is contained in:
Jeremy Fincher 2003-06-18 18:39:40 +00:00
parent 5f8c054805
commit 6ead5d2692
1 changed files with 1 additions and 0 deletions

View File

@ -185,6 +185,7 @@ if __name__ == '__main__':
if '-O' in sys.argv:
import psyco
psyco.full()
main()
else:
main()
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: