aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http')
-rw-r--r--netlib/http/cookies.py4
-rw-r--r--netlib/http/message.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/netlib/http/cookies.py b/netlib/http/cookies.py
index c5ac4591..88c76870 100644
--- a/netlib/http/cookies.py
+++ b/netlib/http/cookies.py
@@ -169,8 +169,8 @@ def parse_set_cookie_headers(headers):
class CookieAttrs(ImmutableMultiDict):
@staticmethod
- def _kconv(v):
- return v.lower()
+ def _kconv(key):
+ return key.lower()
@staticmethod
def _reduce_values(values):
diff --git a/netlib/http/message.py b/netlib/http/message.py
index 3c731ea6..db4054b1 100644
--- a/netlib/http/message.py
+++ b/netlib/http/message.py
@@ -279,7 +279,7 @@ class MultiDictView(MultiDict):
"""
def __init__(self, attr, message):
- if False:
+ if False: # pragma: no cover
# We do not want to call the parent constructor here as that
# would cause an unnecessary parse/unparse pass.
# This is here to silence linters. Message