mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
The usual...
This commit is contained in:
parent
0b095bc092
commit
aad6761cce
56 changed files with 5040 additions and 656 deletions
9
Lib/dos-8x3/threadst.py
Normal file
9
Lib/dos-8x3/threadst.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import thread
|
||||
# Start empty thread to initialise thread mechanics (and global lock!)
|
||||
# This thread will finish immediately thus won't make much influence on
|
||||
# test results by itself, only by that fact that it initialises global lock
|
||||
thread.start_new_thread(lambda : 1, ())
|
||||
|
||||
import test.pystone
|
||||
test.pystone.main()
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue