8000 Put imports in alphabetical order. Change version to 0.7. · python/cpython@708ff03 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 708ff03

Browse files
author
Pierre Quentel
committed
Put imports in alphabetical order. Change version to 0.7.
1 parent 9436e45 commit 708ff03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/http/server.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,16 @@
8080
# (Actually, the latter is only true if you know the server configuration
8181
# at the time the request was made!)
8282

83-
__version__ = "0.6"
83+
__version__ = "0.7"
8484

8585
__all__ = [
8686
"HTTPServer", "BaseHTTPRequestHandler",
8787
"SimpleHTTPRequestHandler", "CGIHTTPRequestHandler",
8888
]
8989

90+
import argparse
91+
import copy
92+
import datetime
9093
import email.utils
9194
import html
9295
import http.client
@@ -100,10 +103,7 @@
100103
import socketserver
101104
import sys
102105
import time
103-
import datetime
104106
import urllib.parse
105-
import copy
106-
import argparse
107107

108108
from http import HTTPStatus
109109

0 commit comments

Comments
 (0)
0