changeset: 83639:2684176519ef branch: 2.7 parent: 83637:b1abc5800e2b user: Richard Oudkerk date: Mon May 06 12:04:28 2013 +0100 files: Lib/multiprocessing/pool.py description: Issue #17805: Add AsyncResult alias for ApplyResult diff -r b1abc5800e2b -r 2684176519ef Lib/multiprocessing/pool.py --- a/Lib/multiprocessing/pool.py Sun May 05 23:22:19 2013 -0400 +++ b/Lib/multiprocessing/pool.py Mon May 06 12:04:28 2013 +0100 @@ -565,6 +565,8 @@ self._cond.release() del self._cache[self._job] +AsyncResult = ApplyResult # create alias -- see #17805 + # # Class whose instances are returned by `Pool.map_async()` #