[issue34835] Multiprocessing module update fails with pip3

2018-09-30 Thread Dr_Zaszus
Dr_Zaszus added the comment: Thank you! It's clear now. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34835] Multiprocessing module update fails with pip3

2018-09-29 Thread Cheryl Sabella
Cheryl Sabella added the comment: As Steven said, > In Python 2.6+ multiprocessing is a std lib module This means that multiprocessing will be current with the version of Python 3 that you have installed. If you're currently on 3.7.0, when 3.7.1 is released and you install it, you will get

[issue34835] Multiprocessing module update fails with pip3

2018-09-28 Thread Dr_Zaszus
Dr_Zaszus added the comment: No, you are right, thank you. But just to be clear, how do I update multiprocessing in python3 then? -- ___ Python tracker ___

[issue34835] Multiprocessing module update fails with pip3

2018-09-28 Thread Steven D'Aprano
Steven D'Aprano added the comment: ``pip3 search multiprocessing`` says: multiprocessing (2.6.2.1)- Backport of the multiprocessing package to Python 2.4 and 2.5 so you are trying to install a Python 2.4/2.5 package into Python 3.7, which naturally cannot work. In Python 2.6+

[issue34835] Multiprocessing module update fails with pip3

2018-09-28 Thread Dr_Zaszus
New submission from Dr_Zaszus : pip3 install --upgrade multiprocessing fails with a python2 error in 'setup.py': print 'Macros:' ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print('Macros:')? -- components: Installation