diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-08-16 20:02:18 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-08-18 22:17:00 +0200 |
commit | 9686a77dcb640ace74f923c1f0f7f7307f79edfe (patch) | |
tree | 59eb8c26f1e3cc074a6b61e6a134b4bd9f966628 /netlib/http/cookies.py | |
parent | 07a1356e2f155d5b9e3a5f97bf90515ed9f1011f (diff) | |
download | mitmproxy-9686a77dcb640ace74f923c1f0f7f7307f79edfe.tar.gz mitmproxy-9686a77dcb640ace74f923c1f0f7f7307f79edfe.tar.bz2 mitmproxy-9686a77dcb640ace74f923c1f0f7f7307f79edfe.zip |
http2: implement request target
Diffstat (limited to 'netlib/http/cookies.py')
-rw-r--r-- | netlib/http/cookies.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/netlib/http/cookies.py b/netlib/http/cookies.py index b77e3503..78b03a83 100644 --- a/netlib/http/cookies.py +++ b/netlib/http/cookies.py @@ -23,8 +23,7 @@ variants. Serialization follows RFC6265. http://tools.ietf.org/html/rfc2965 """ -# TODO -# - Disallow LHS-only Cookie values +# TODO: Disallow LHS-only Cookie values def _read_until(s, start, term): |