summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_queue.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-03-25 13:12:56 (GMT)
committerGeorg Brandl <georg@python.org>2006-03-25 13:12:56 (GMT)
commitbaf05b7e09fa7f83292f7384025e94b116da00c0 (patch)
tree32c2e228359bc86acd04e8fbfc939448da2bd25d /Lib/test/test_queue.py
parentc4e94b90a84a1127078bdb9f63707eb71fedece3 (diff)
downloadcpython-baf05b7e09fa7f83292f7384025e94b116da00c0.zip
cpython-baf05b7e09fa7f83292f7384025e94b116da00c0.tar.gz
cpython-baf05b7e09fa7f83292f7384025e94b116da00c0.tar.bz2
fix typo
Diffstat (limited to 'Lib/test/test_queue.py')
-rw-r--r--Lib/test/test_queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py
index b3f24df..66977e6 100644
--- a/Lib/test/test_queue.py
+++ b/Lib/test/test_queue.py
@@ -251,7 +251,7 @@ def QueueJoinTest(q):
q.put(None) # instruct the threads to close
q.join() # verify that you can join twice
-def QueueTaskDoneTest(q)
+def QueueTaskDoneTest(q):
try:
q.task_done()
except ValueError: