socketserver renaming reversal part 3: move the module into the right

place and fix all references to it.  Closes #2926.
This commit is contained in:
Georg Brandl 2008-05-24 18:31:28 +00:00
parent 6acb075f03
commit e152a77d96
19 changed files with 409 additions and 411 deletions

View file

@ -33,7 +33,7 @@ import os
import re
import select
import socket
from socketserver import ThreadingTCPServer, StreamRequestHandler
from SocketServer import ThreadingTCPServer, StreamRequestHandler
import string
import struct
import sys