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 hniksic
Recipients asvetlov, hniksic, mivade, yselivanov
Date 2018-10-26.08:57:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540544254.05.0.788709270274.issue33533@psf.upfronthosting.co.za>
In-reply-to
Content
I didn't start working on the PR, so please go ahead if you're interested.

One small suggestion: If you're implementing this, please note that the proof-of-concept implementation shown in the description is not very efficient because each call to `wait` has to iterate over all the futures (which can be potentially large in number) to set up and tear down the done callbacks on each one. A more efficient implementation would set up the callbacks only once - see https://stackoverflow.com/a/51403277/1600898 for an example.
History
Date User Action Args
2018-10-26 08:57:34hniksicsetrecipients: + hniksic, asvetlov, yselivanov, mivade
2018-10-26 08:57:34hniksicsetmessageid: <1540544254.05.0.788709270274.issue33533@psf.upfronthosting.co.za>
2018-10-26 08:57:34hniksiclinkissue33533 messages
2018-10-26 08:57:33hniksiccreate