]> granicus.if.org Git - python/commitdiff
Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".
authorMark Dickinson <mdickinson@enthought.com>
Sat, 20 Oct 2012 12:16:49 +0000 (13:16 +0100)
committerMark Dickinson <mdickinson@enthought.com>
Sat, 20 Oct 2012 12:16:49 +0000 (13:16 +0100)
Lib/concurrent/futures/process.py

index 04238a7ace8c44bc9b3556b6415beb99d05a1f46..94e02897f39a9867e38978ace726b675d53cce4e 100644 (file)
@@ -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)'