commit | 5ee2404d1e4ba5edf5a40f93f7492383524f303c | [log] [tgz] |
---|---|---|
author | Mark Dickinson <mdickinson@enthought.com> | Sat Oct 20 13:16:49 2012 +0100 |
committer | Mark Dickinson <mdickinson@enthought.com> | Sat Oct 20 13:16:49 2012 +0100 |
tree | f197e5b6e052c5766e6c4f9dd0ba7619522b1ca5 | |
parent | aaa28832fd5673e7b4b715c9d0ee65b4b2ac51ab [diff] |
Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py index 04238a7..94e0289 100644 --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py
@@ -40,7 +40,7 @@ Process #1..n: - reads _CallItems from "Call Q", executes the calls, and puts the resulting - _ResultItems in "Request Q" + _ResultItems in "Result Q" """ __author__ = 'Brian Quinlan (brian@sweetapp.com)'