[issue3807] _multiprocessing build fails when configure --without-threads

Amaury Forgeot d'Arc report at bugs.python.org
Wed Sep 10 14:45:32 CEST 2008


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

The patch is not easy to read, but if it can be summarized to:

    if sysconfig.get_config_var('WITH_THREAD'):
        <build the _multiprocessing extension>
    else:
        missing.append('_multiprocessing')

then this makes sense - it seems that the multiprocessing module is
completely unusable if python cannot use threads. Even at the python
level, it uses "import threading" in many places.

This need another review, though. Raising issue to ReleaseBlocker.

----------
nosy: +amaury.forgeotdarc
priority:  -> release blocker

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3807>
_______________________________________


More information about the Python-bugs-list mailing list