blob: d9c27886b03066b5323d030126edfdf053e078b1 [file] [log] [blame]
Guido van Rossumaad67612000-05-08 17:31:04 +00001import thread
Thomas Wouters7e474022000-07-16 12:04:32 +00002# Start empty thread to initialize thread mechanics (and global lock!)
Guido van Rossumaad67612000-05-08 17:31:04 +00003# This thread will finish immediately thus won't make much influence on
Thomas Wouters7e474022000-07-16 12:04:32 +00004# test results by itself, only by that fact that it initializes global lock
Guido van Rossumaad67612000-05-08 17:31:04 +00005thread.start_new_thread(lambda : 1, ())
6
7import test.pystone
8test.pystone.main()
9