Bump version to 0.9.1.
[python/dscho.git] / Lib / dos-8x3 / threadst.py
blobd9c27886b03066b5323d030126edfdf053e078b1
1 import thread
2 # Start empty thread to initialize thread mechanics (and global lock!)
3 # This thread will finish immediately thus won't make much influence on
4 # test results by itself, only by that fact that it initializes global lock
5 thread.start_new_thread(lambda : 1, ())
7 import test.pystone
8 test.pystone.main()