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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ee2404d1e4ba5edf5a40f93f7492383524f303c;p=thirdparty%2FPython%2Fcpython.git Fix concurrent.futures docstring typo: "Request Q" -> "Result Q". --- diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py index 04238a7ace8c..94e02897f39a 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)'