Create http package. #2883.

This commit is contained in:
Georg Brandl 2008-05-26 16:32:26 +00:00
parent 744c2cd325
commit 2442015af2
50 changed files with 930 additions and 1203 deletions

View file

@ -4,11 +4,11 @@ We don't want to require the 'network' resource.
"""
import os, unittest
from SimpleHTTPServer import SimpleHTTPRequestHandler
from http.server import SimpleHTTPRequestHandler
from test import support
class SocketlessRequestHandler (SimpleHTTPRequestHandler):
class SocketlessRequestHandler(SimpleHTTPRequestHandler):
def __init__(self):
pass