From: Mark Dickinson Date: Sat, 20 Oct 2012 12:16:49 +0000 (+0100) Subject: Fix concurrent.futures docstring typo: "Request Q" -> "Result Q". X-Git-Tag: v3.4.0a1~2214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ee2404d1e4ba5edf5a40f93f7492383524f303c;p=python Fix concurrent.futures docstring typo: "Request Q" -> "Result Q". --- 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)'