diff options
author | Guido van Rossum <guido@python.org> | 1999-05-03 18:00:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-05-03 18:00:48 (GMT) |
commit | 3a64e058ebaaeb82db30f3ce9357dd821668ddfc (patch) | |
tree | beefce6f3c201d76433b8eb59d6dda9845910e26 /Lib/CGIHTTPServer.py | |
parent | e6e8818c03571f8def08aef789092a4506a57c62 (diff) | |
download | cpython-3a64e058ebaaeb82db30f3ce9357dd821668ddfc.zip cpython-3a64e058ebaaeb82db30f3ce9357dd821668ddfc.tar.gz cpython-3a64e058ebaaeb82db30f3ce9357dd821668ddfc.tar.bz2 |
No need to import sys, time, or socket. (Andrew Dalke & kjpylint)
Diffstat (limited to 'Lib/CGIHTTPServer.py')
-rw-r--r-- | Lib/CGIHTTPServer.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/CGIHTTPServer.py b/Lib/CGIHTTPServer.py index 66c4c9c..d5ec7b0 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 |