This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbt
Recipients amaury.forgeotdarc, asksol, brian.curtin, gregory.p.smith, jnoller, kristjan.jonsson, pitrou, santoso.wijaya, sbt, tim.golden
Date 2012-04-15.13:33:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334496840.38.0.0797117663983.issue11750@psf.upfronthosting.co.za>
In-reply-to
Content
New patch.  Compared to the previous one:

* socket functions have been moved from _windows to _multiprocessing
* _windows.vcpoj has been removed (so _windows is part of pythoncore.vcproj)
* no changes to pcbuild.sln needed
* removed reference to 'win32_functions.c' in setup.py

(I am not sure whether/how setup.py is used on Windows.)

 Lib/multiprocessing/connection.py          |   124 +-
 Lib/multiprocessing/forking.py             |    31 +-
 Lib/multiprocessing/heap.py                |     6 +-
 Lib/multiprocessing/reduction.py           |     6 +-
 Lib/subprocess.py                          |   104 +-
 Lib/test/test_multiprocessing.py           |     2 +-
 Modules/_multiprocessing/multiprocessing.c |    83 +-
 Modules/_multiprocessing/win32_functions.c |   823 ----------------
 Modules/_windows.c                         |  1337 +++++++++++++++++++++++++++
 PC/_subprocess.c                           |   697 --------------
 PC/config.c                                |     6 +-
 PCbuild/_multiprocessing.vcproj            |     4 -
 PCbuild/pythoncore.vcproj                  |     8 +-
 setup.py                                   |     1 -
 14 files changed, 1568 insertions(+), 1664 deletions(-)
History
Date User Action Args
2012-04-15 13:34:00sbtsetrecipients: + sbt, gregory.p.smith, amaury.forgeotdarc, pitrou, kristjan.jonsson, tim.golden, jnoller, brian.curtin, asksol, santoso.wijaya
2012-04-15 13:34:00sbtsetmessageid: <1334496840.38.0.0797117663983.issue11750@psf.upfronthosting.co.za>
2012-04-15 13:33:59sbtlinkissue11750 messages
2012-04-15 13:33:59sbtcreate