blob: c2b08f23da331eb74f699f3dfd32b0502026ec1e [file] [log] [blame]
Guido van Rossumaad67612000-05-08 17:31:04 +00001import thread
2# Start empty thread to initialise 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 initialises global lock
5thread.start_new_thread(lambda : 1, ())
6
7import test.pystone
8test.pystone.main()
9