diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-10-20 12:16:49 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-10-20 12:16:49 (GMT) |
commit | 5ee2404d1e4ba5edf5a40f93f7492383524f303c (patch) | |
tree | f197e5b6e052c5766e6c4f9dd0ba7619522b1ca5 /Lib/concurrent/futures | |
parent | aaa28832fd5673e7b4b715c9d0ee65b4b2ac51ab (diff) | |
download | cpython-5ee2404d1e4ba5edf5a40f93f7492383524f303c.zip cpython-5ee2404d1e4ba5edf5a40f93f7492383524f303c.tar.gz cpython-5ee2404d1e4ba5edf5a40f93f7492383524f303c.tar.bz2 |
Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".
Diffstat (limited to 'Lib/concurrent/futures')
-rw-r--r-- | Lib/concurrent/futures/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ Local worker thread: 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)' |