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.

classification
Title: multiprocessing module not being installed
Type: Stage:
Components: Installation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: benjamin.peterson, hdiogenes, jnoller
Priority: normal Keywords: easy, patch

Created on 2008-06-20 01:59 by hdiogenes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
install_multiprocessing.patch hdiogenes, 2008-06-20 01:59 Adds multiprocessing to installation
Messages (5)
msg68439 - (view) Author: Humberto Diógenes (hdiogenes) * Date: 2008-06-20 01:58
The new multiprocessing module is not being installed:

$ python3.0
Python 3.0b1+ (py3k:64417, Jun 19 2008, 21:25:46) 
[GCC 4.0.1 (Apple Inc. build 5483)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named multiprocessing
>>> 

After adding it to Makefile.pre.in and rebuilding/reinstalling:

$ python3.0
Python 3.0b1+ (py3k:64417M, Jun 19 2008, 22:50:25) 
[GCC 4.0.1 (Apple Inc. build 5483)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import multiprocessing
>>>
msg68440 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2008-06-20 02:00
Is this a make && make install?
msg68442 - (view) Author: Humberto Diógenes (hdiogenes) * Date: 2008-06-20 02:16
Jesse, not install, but altinstall:
sudo rm -fr /usr/local/lib/python3.0
make clean
make && sudo make altinstall

Forgot to mention that it was originally reported by Rodrigo Fenrrir.
msg68443 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2008-06-20 02:20
Thanks. This is what I get from running out of subversion all the time.
msg68444 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-06-20 02:47
I think r64422 should do the trick.
History
Date User Action Args
2022-04-11 14:56:35adminsetgithub: 47400
2008-06-20 02:47:49benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg68444
nosy: + benjamin.peterson
2008-06-20 02:20:26jnollersetmessages: + msg68443
2008-06-20 02:16:17hdiogenessetmessages: + msg68442
2008-06-20 02:15:32jnollersetkeywords: + easy
2008-06-20 02:00:55jnollersetassignee: jnoller
2008-06-20 02:00:33jnollersetnosy: + jnoller
messages: + msg68440
2008-06-20 01:59:11hdiogenescreate