Staging
v0.5.1
https://github.com/python/cpython
Revision 6ddd92730b05a9dc41bd05372b779977f50cdc6d authored by Donald Stufft on 09 September 2016, 16:16:12 UTC, committed by Donald Stufft on 09 September 2016, 16:16:12 UTC
1 parent 77ba596
Raw File
Tip revision: 6ddd92730b05a9dc41bd05372b779977f50cdc6d authored by Donald Stufft on 09 September 2016, 16:16:12 UTC
Upgrade setuptools to 27.1.2
Tip revision: 6ddd927
mp_fork_bomb.py
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()
back to top