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 remi.lapeyre
Recipients Anthony Sottile, remi.lapeyre
Date 2019-01-01.00:13:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546301622.02.0.101176834583.issue35629@roundup.psfhosted.org>
In-reply-to
Content
Weirdly enough, it works with iPython:

    $ ipython3
    Python 3.7.1 (default, Nov  6 2018, 18:49:54)
    Type 'copyright', 'credits' or 'license' for more information
    IPython 6.4.0 -- An enhanced Interactive Python. Type '?' for help.

    In [1]: import multiprocessing

    In [2]: tuple(multiprocessing.Pool(4).imap(print, (1, 2, 3)))
    ...:
    1
    2
    3
    Out[2]: (None, None, None)

    In [3]:
History
Date User Action Args
2019-01-01 00:13:44remi.lapeyresetrecipients: + remi.lapeyre, Anthony Sottile
2019-01-01 00:13:42remi.lapeyresetmessageid: <1546301622.02.0.101176834583.issue35629@roundup.psfhosted.org>
2019-01-01 00:13:42remi.lapeyrelinkissue35629 messages
2019-01-01 00:13:41remi.lapeyrecreate