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: Python3 - mulltiprocessing
Type: behavior Stage: resolved
Components: Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: SilentGhost, fbyrkjeland
Priority: normal Keywords:

Created on 2019-05-18 09:53 by fbyrkjeland, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg342789 - (view) Author: Frode Byrkjeland (fbyrkjeland) Date: 2019-05-18 09:53
multiprocessing-2.6.2.1.tar.gz contains setup.py with python2 print statement in stead of python3 print( ). This results in an error when trying to install. Found on Ubuntu 18.04 x86_64 running python3.6.7
error seems to be ok after doing changes on the print statements in that file.

install cmd: "python3 -m pip install multiprocessing"
msg342790 - (view) Author: SilentGhost (SilentGhost) * (Python triager) Date: 2019-05-18 10:07
multiprocessing module that is available on PyPi is a backport of stdlib module to python 2.4 and 2.5. multiprocessing module is available in stdlib for all version after that, so you don't need to install it with pip.
History
Date User Action Args
2022-04-11 14:59:15adminsetgithub: 81136
2019-05-18 10:07:34SilentGhostsetstatus: open -> closed

type: behavior

nosy: + SilentGhost
messages: + msg342790
resolution: not a bug
stage: resolved
2019-05-18 09:53:58fbyrkjelandcreate