mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-40275: Avoid importing socket in test.support (GH-19603)
* Move socket related functions from test.support to socket_helper. * Import socket, nntplib and urllib.error lazily in transient_internet(). * Remove importing multiprocess.
This commit is contained in:
parent
3c8a5b459d
commit
16994912c9
37 changed files with 472 additions and 429 deletions
|
@ -9,10 +9,11 @@ from http.server import (HTTPServer as _HTTPServer,
|
|||
SimpleHTTPRequestHandler, BaseHTTPRequestHandler)
|
||||
|
||||
from test import support
|
||||
from test.support import socket_helper
|
||||
|
||||
here = os.path.dirname(__file__)
|
||||
|
||||
HOST = support.HOST
|
||||
HOST = socket_helper.HOST
|
||||
CERTFILE = os.path.join(here, 'keycert.pem')
|
||||
|
||||
# This one's based on HTTPServer, which is based on socketserver
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue