aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/language/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'libpathod/language/http.py')
-rw-r--r--libpathod/language/http.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/libpathod/language/http.py b/libpathod/language/http.py
index 070cc5f4..daee7e54 100644
--- a/libpathod/language/http.py
+++ b/libpathod/language/http.py
@@ -46,6 +46,8 @@ class Method(base.OptionsOrValue):
class _HeaderMixin(object):
+ unique_name = None
+
def format_header(self, key, value):
return [key, ": ", value, "\r\n"]
@@ -166,6 +168,7 @@ class _HTTPMessage(message.Message):
class Response(_HTTPMessage):
+ unique_name = None
comps = (
Body,
Header,