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 Janne.Karila
Recipients Bbb, Janne.Karila
Date 2012-10-24.08:14:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351066488.98.0.670922072018.issue16307@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed, the current implementation map_async simply ignores the callback arguments:

def map_async(self, func, iterable, chunksize=None, callback=None,
        error_callback=None):
    '''
    Asynchronous version of `map()` method.
    '''
    return self._map_async(func, iterable, mapstar, chunksize)
History
Date User Action Args
2012-10-24 08:14:49Janne.Karilasetrecipients: + Janne.Karila, Bbb
2012-10-24 08:14:48Janne.Karilasetmessageid: <1351066488.98.0.670922072018.issue16307@psf.upfronthosting.co.za>
2012-10-24 08:14:48Janne.Karilalinkissue16307 messages
2012-10-24 08:14:48Janne.Karilacreate