diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-10-20 13:16:49 +0100 |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-10-20 13:16:49 +0100 |
commit | 5ee2404d1e4ba5edf5a40f93f7492383524f303c (patch) | |
tree | f197e5b6e052c5766e6c4f9dd0ba7619522b1ca5 /Lib/concurrent/futures/process.py | |
parent | aaa28832fd5673e7b4b715c9d0ee65b4b2ac51ab (diff) | |
download | cpython-git-5ee2404d1e4ba5edf5a40f93f7492383524f303c.tar.gz |
Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".
Diffstat (limited to 'Lib/concurrent/futures/process.py')
-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 04238a7ace..94e02897f3 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)' |