From: Guido van Rossum Date: Mon, 3 May 1999 18:00:48 +0000 (+0000) Subject: No need to import sys, time, or socket. (Andrew Dalke & kjpylint) X-Git-Tag: v1.6a1~1391 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a64e058ebaaeb82db30f3ce9357dd821668ddfc;p=thirdparty%2FPython%2Fcpython.git No need to import sys, time, or socket. (Andrew Dalke & kjpylint) --- diff --git a/Lib/CGIHTTPServer.py b/Lib/CGIHTTPServer.py index 66c4c9c41b95..d5ec7b0010c0 100644 --- a/Lib/CGIHTTPServer.py +++ b/Lib/CGIHTTPServer.py @@ -10,9 +10,6 @@ __version__ = "0.3" import os -import sys -import time -import socket import string import urllib import BaseHTTPServer