[issue16307] multiprocess.pool.map_async callables not working

Janne Karila report at bugs.python.org
Wed Oct 24 10:14:48 CEST 2012


Janne Karila added the comment:

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)

----------
nosy: +Janne.Karila

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16307>
_______________________________________


More information about the Python-bugs-list mailing list