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 mark.dickinson
Recipients F.D. Sacerdoti, bquinlan, mark.dickinson
Date 2016-02-18.19:00:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455822001.16.0.0406531575219.issue26374@psf.upfronthosting.co.za>
In-reply-to
Content
Note also this code snippet from PEP 3148:

    for number, prime in zip(PRIMES, executor.map(is_prime,
                                                      PRIMES)):

The use of zip here suggests strongly that the intention is that the order of the `map` result is well-defined.

It's possible that the docs should be updated to make the ordering requirement clearer.
History
Date User Action Args
2016-02-18 19:00:01mark.dickinsonsetrecipients: + mark.dickinson, bquinlan, F.D. Sacerdoti
2016-02-18 19:00:01mark.dickinsonsetmessageid: <1455822001.16.0.0406531575219.issue26374@psf.upfronthosting.co.za>
2016-02-18 19:00:01mark.dickinsonlinkissue26374 messages
2016-02-18 19:00:00mark.dickinsoncreate