]> granicus.if.org Git - python/commit
Merged revisions 64104,64117 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Wed, 11 Jun 2008 16:44:04 +0000 (16:44 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 11 Jun 2008 16:44:04 +0000 (16:44 +0000)
commite711cafab13efc9c1fe6c5cd75826401445eb585
tree091a6334fdf6ccdcb93027302c5e038570ca04a4
parenteec3d7137929611b98dd593cd2f122cd91b723b2
Merged revisions 64104,64117 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64104 | benjamin.peterson | 2008-06-10 21:40:25 -0500 (Tue, 10 Jun 2008) | 2 lines

  add the multiprocessing package to fulfill PEP 371
........
  r64117 | benjamin.peterson | 2008-06-11 07:26:31 -0500 (Wed, 11 Jun 2008) | 2 lines

  fix import of multiprocessing by juggling imports
........
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