Commit 66c95c74 authored by Antoine Pitrou's avatar Antoine Pitrou

Fix test_httplib when built without threads

parent db1bad2d
...@@ -3,13 +3,13 @@ import sys ...@@ -3,13 +3,13 @@ import sys
import ssl import ssl
import pprint import pprint
import socket import socket
import threading
import urllib.parse import urllib.parse
# Rename HTTPServer to _HTTPServer so as to avoid confusion with HTTPSServer. # Rename HTTPServer to _HTTPServer so as to avoid confusion with HTTPSServer.
from http.server import (HTTPServer as _HTTPServer, from http.server import (HTTPServer as _HTTPServer,
SimpleHTTPRequestHandler, BaseHTTPRequestHandler) SimpleHTTPRequestHandler, BaseHTTPRequestHandler)
from test import support from test import support
threading = support.import_module("threading")
here = os.path.dirname(__file__) here = os.path.dirname(__file__)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment