summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/mp_fork_bomb.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/test/mp_fork_bomb.py')
-rw-r--r--lib/python2.7/test/mp_fork_bomb.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/python2.7/test/mp_fork_bomb.py b/lib/python2.7/test/mp_fork_bomb.py
deleted file mode 100644
index 72cea25..0000000
--- a/lib/python2.7/test/mp_fork_bomb.py
+++ /dev/null
@@ -1,16 +0,0 @@
-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()