summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-25 07:20:14 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-25 07:20:14 (GMT)
commita6168f9e0a0ff77910e783df36f5dd4b5dfa7372 (patch)
tree5424d6e36503bda00ee3a63638737a9973b4a4fb /Lib/test/test_socket.py
parent8107290fa186bd5efa2a9c158000fd578d228a6c (diff)
downloadcpython-a6168f9e0a0ff77910e783df36f5dd4b5dfa7372.zip
cpython-a6168f9e0a0ff77910e783df36f5dd4b5dfa7372.tar.gz
cpython-a6168f9e0a0ff77910e783df36f5dd4b5dfa7372.tar.bz2
Queue renaming reversal part 3: move module into place and
change imports and other references. Closes #2925.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r--Lib/test/test_socket.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 81ef6d3..48c9346 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -9,7 +9,7 @@ import select
import thread, threading
import time
import traceback
-import queue
+import Queue
import sys
import os
import array
@@ -96,7 +96,7 @@ class ThreadableTest:
self.server_ready = threading.Event()
self.client_ready = threading.Event()
self.done = threading.Event()
- self.queue = queue.Queue(1)
+ self.queue = Queue.Queue(1)
# Do some munging to start the client test.
methodname = self.id()