diff options
author | Georg Brandl <georg@python.org> | 2006-03-25 13:12:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-03-25 13:12:56 (GMT) |
commit | baf05b7e09fa7f83292f7384025e94b116da00c0 (patch) | |
tree | 32c2e228359bc86acd04e8fbfc939448da2bd25d /Lib/test/test_queue.py | |
parent | c4e94b90a84a1127078bdb9f63707eb71fedece3 (diff) | |
download | cpython-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.py | 2 |
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: |