changeset: 83640:bb4bb2db6106 branch: 3.3 parent: 83635:fef7f212fe76 user: Richard Oudkerk date: Mon May 06 12:10:04 2013 +0100 files: Lib/multiprocessing/pool.py description: Issue #17805: Add AsyncResult alias for ApplyResult diff -r fef7f212fe76 -r bb4bb2db6106 Lib/multiprocessing/pool.py --- a/Lib/multiprocessing/pool.py Sun May 05 22:15:44 2013 -0500 +++ b/Lib/multiprocessing/pool.py Mon May 06 12:10:04 2013 +0100 @@ -572,6 +572,8 @@ self._event.set() del self._cache[self._job] +AsyncResult = ApplyResult # create alias -- see #17805 + # # Class whose instances are returned by `Pool.map_async()` #