]> granicus.if.org Git - python/commit
add the multiprocessing package to fulfill PEP 371
authorBenjamin Peterson <benjamin@python.org>
Wed, 11 Jun 2008 02:40:25 +0000 (02:40 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 11 Jun 2008 02:40:25 +0000 (02:40 +0000)
commit190d56e00990eadce8ad1b7d1785016cc109db7b
treeef143cf28648baf9fe708640f67586f14273a0ff
parentd5299866f95f1e74255312444176280494d2782a
add the multiprocessing package to fulfill PEP 371
32 files changed:
Doc/includes/mp_benchmarks.py [new file with mode: 0644]
Doc/includes/mp_distributing.py [new file with mode: 0644]
Doc/includes/mp_newtype.py [new file with mode: 0644]
Doc/includes/mp_pool.py [new file with mode: 0644]
Doc/includes/mp_synchronize.py [new file with mode: 0644]
Doc/includes/mp_webserver.py [new file with mode: 0644]
Doc/includes/mp_workers.py [new file with mode: 0644]
Doc/library/multiprocessing.rst [new file with mode: 0644]
Doc/library/someos.rst
Lib/multiprocessing/__init__.py [new file with mode: 0644]
Lib/multiprocessing/connection.py [new file with mode: 0644]
Lib/multiprocessing/dummy/__init__.py [new file with mode: 0644]
Lib/multiprocessing/dummy/connection.py [new file with mode: 0644]
Lib/multiprocessing/forking.py [new file with mode: 0644]
Lib/multiprocessing/heap.py [new file with mode: 0644]
Lib/multiprocessing/managers.py [new file with mode: 0644]
Lib/multiprocessing/pool.py [new file with mode: 0644]
Lib/multiprocessing/process.py [new file with mode: 0644]
Lib/multiprocessing/queues.py [new file with mode: 0644]
Lib/multiprocessing/reduction.py [new file with mode: 0644]
Lib/multiprocessing/sharedctypes.py [new file with mode: 0644]
Lib/multiprocessing/synchronize.py [new file with mode: 0644]
Lib/multiprocessing/util.py [new file with mode: 0644]
Lib/test/test_multiprocessing.py [new file with mode: 0644]
Modules/_multiprocessing/connection.h [new file with mode: 0644]
Modules/_multiprocessing/multiprocessing.c [new file with mode: 0644]
Modules/_multiprocessing/multiprocessing.h [new file with mode: 0644]
Modules/_multiprocessing/pipe_connection.c [new file with mode: 0644]
Modules/_multiprocessing/semaphore.c [new file with mode: 0644]
Modules/_multiprocessing/socket_connection.c [new file with mode: 0644]
Modules/_multiprocessing/win32_functions.c [new file with mode: 0644]
setup.py