summaryrefslogtreecommitdiffstats
path: root/Lib/http
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-02-13 18:48:41 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-02-13 18:48:41 (GMT)
commit67677575893289abf0374243f1e603e0683a787d (patch)
treeaad9db3853bf105988a257cde75425d91174ec29 /Lib/http
parent2eab85b7a22733a4921e31d041be465f7a8b921b (diff)
parent366c570d1f48df0f06707e34472b626bc97f03e3 (diff)
downloadcpython-67677575893289abf0374243f1e603e0683a787d.zip
cpython-67677575893289abf0374243f1e603e0683a787d.tar.gz
cpython-67677575893289abf0374243f1e603e0683a787d.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 ac53550..a2425f2 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