summaryrefslogtreecommitdiffstats
path: root/Lib/SimpleHTTPServer.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-05-03 18:01:31 (GMT)
committerGuido van Rossum <guido@python.org>1999-05-03 18:01:31 (GMT)
commitf8fd11d039758b5d0c91316204be268eb511757b (patch)
tree2ba2b162070888a5c3f1d37ba565f568f3a9fc21 /Lib/SimpleHTTPServer.py
parent3a64e058ebaaeb82db30f3ce9357dd821668ddfc (diff)
downloadcpython-f8fd11d039758b5d0c91316204be268eb511757b.zip
cpython-f8fd11d039758b5d0c91316204be268eb511757b.tar.gz
cpython-f8fd11d039758b5d0c91316204be268eb511757b.tar.bz2
No need to import sys, time, socket or SocketServer. (Andrew Dalke & kjpylint)
Diffstat (limited to 'Lib/SimpleHTTPServer.py')
-rw-r--r--Lib/SimpleHTTPServer.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py
index 9260e7e..fc1824c 100644
--- a/Lib/SimpleHTTPServer.py
+++ b/Lib/SimpleHTTPServer.py
@@ -10,12 +10,8 @@ __version__ = "0.3"
import os
-import sys
-import time
-import socket
import string
import posixpath
-import SocketServer
import BaseHTTPServer