mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			387 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			387 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import multiprocessing
 | 
						|
 | 
						|
def foo(conn):
 | 
						|
    conn.send("123")
 | 
						|
 | 
						|
# Because "if __name__ == '__main__'" is missing this will not work
 | 
						|
# correctly on Windows.  However, we should get a RuntimeError rather
 | 
						|
# than the Windows equivalent of a fork bomb.
 | 
						|
 | 
						|
r, w = multiprocessing.Pipe(False)
 | 
						|
p = multiprocessing.Process(target=foo, args=(w,))
 | 
						|
p.start()
 | 
						|
w.close()
 | 
						|
print(r.recv())
 | 
						|
r.close()
 | 
						|
p.join()
 |