summaryrefslogtreecommitdiff
path: root/Lib/concurrent
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-10-20 13:16:49 +0100
committerMark Dickinson <mdickinson@enthought.com>2012-10-20 13:16:49 +0100
commit6eaba7e35eae4982de79bc6a4c43bad9b0a57e67 (patch)
treeb2ec21896f77942b52875f9979ea8dd26b229f34 /Lib/concurrent
parenta6e37a819e6596b5bec3e96207fba005a7dd85d0 (diff)
downloadcpython-6eaba7e35eae4982de79bc6a4c43bad9b0a57e67.tar.gz
Fix concurrent.futures docstring typo: "Request Q" -> "Result Q".
Diffstat (limited to 'Lib/concurrent')
-rw-r--r--Lib/concurrent/futures/process.py2
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)'