summaryrefslogtreecommitdiffstats
path: root/Lib/http
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-02-13 18:48:15 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-02-13 18:48:15 (GMT)
commit366c570d1f48df0f06707e34472b626bc97f03e3 (patch)
tree43b6c5bfb466b45544a6f3b7f9d6067363998b69 /Lib/http
parenta25c542c476b84b30a7172d5b4f7e2c82330f6f4 (diff)
downloadcpython-366c570d1f48df0f06707e34472b626bc97f03e3.zip
cpython-366c570d1f48df0f06707e34472b626bc97f03e3.tar.gz
cpython-366c570d1f48df0f06707e34472b626bc97f03e3.tar.bz2
Issue #23418: Add missing entries to http.server.__all__.
Patch by Martin Panter.
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/server.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py
index cfa29f4..a27890e 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -82,7 +82,10 @@ XXX To do:
__version__ = "0.6"
-__all__ = ["HTTPServer", "BaseHTTPRequestHandler"]
+__all__ = [
+ "HTTPServer", "BaseHTTPRequestHandler",
+ "SimpleHTTPRequestHandler", "CGIHTTPRequestHandler",
+]
import html
import http.client