We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9436e45 commit 708ff03Copy full SHA for 708ff03
Lib/http/server.py
@@ -80,13 +80,16 @@
80
# (Actually, the latter is only true if you know the server configuration
81
# at the time the request was made!)
82
83
-__version__ = "0.6"
+__version__ = "0.7"
84
85
__all__ = [
86
"HTTPServer", "BaseHTTPRequestHandler",
87
"SimpleHTTPRequestHandler", "CGIHTTPRequestHandler",
88
]
89
90
+import argparse
91
+import copy
92
+import datetime
93
import email.utils
94
import html
95
import http.client
@@ -100,10 +103,7 @@
100
103
import socketserver
101
104
import sys
102
105
import time
-import datetime
106
import urllib.parse
-import copy
-import argparse
107
108
from http import HTTPStatus
109
0 commit comments