[Python-checkins] cpython: Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".

mark.dickinson python-checkins at python.org
Sat Oct 20 14:17:11 CEST 2012


http://hg.python.org/cpython/rev/3f72b3a96508
changeset:   79850:3f72b3a96508
user:        Mark Dickinson <mdickinson at enthought.com>
date:        Sat Oct 20 13:16:49 2012 +0100
summary:
  Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".

files:
  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
--- 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 at sweetapp.com)'

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list