summaryrefslogtreecommitdiff
path: root/src/waitress/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/waitress/parser.py')
-rw-r--r--src/waitress/parser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/waitress/parser.py b/src/waitress/parser.py
index c2789eb..4530b23 100644
--- a/src/waitress/parser.py
+++ b/src/waitress/parser.py
@@ -16,8 +16,8 @@
This server uses asyncore to accept connections and do initial
processing but threads to do work.
"""
-import re
from io import BytesIO
+import re
from waitress.buffers import OverflowableBuffer
from waitress.compat import tostr, unquote_bytes_to_wsgi, urlparse
@@ -29,6 +29,7 @@ from waitress.utilities import (
ServerNotImplemented,
find_double_newline,
)
+
from .rfc7230 import HEADER_FIELD