summaryrefslogtreecommitdiff
path: root/src/waitress/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/waitress/compat.py')
-rw-r--r--src/waitress/compat.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/waitress/compat.py b/src/waitress/compat.py
index aaf7a78..7c2630c 100644
--- a/src/waitress/compat.py
+++ b/src/waitress/compat.py
@@ -1,3 +1,6 @@
+import _thread as thread
+from http import client as httplib
+from io import StringIO as NativeIO
import os
import platform
@@ -5,13 +8,9 @@ import platform
# Python on Windows may not define IPPROTO_IPV6 in socket.
import socket
import sys
-import warnings
-from http import client as httplib
-from io import StringIO as NativeIO
from urllib import parse as urlparse
from urllib.parse import unquote_to_bytes
-
-import _thread as thread
+import warnings
# True if we are running on Windows
WIN = platform.system() == "Windows"