mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			Python
		
	
	
	
	
	
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()
 | 
						|
 |