summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFred Drake <fred@zope.com>2013-07-26 13:08:00 -0400
committerFred Drake <fred@zope.com>2013-07-26 13:08:00 -0400
commitc6cecc2708f9550127b3a56731974b8fdce77cce (patch)
tree0a7cd36f95876815d1d11fd18b3952e1c6d8727c /src
parent36ea09f666d06e8804e927ca1aad8be68ae02533 (diff)
downloadzope-publisher-c6cecc2708f9550127b3a56731974b8fdce77cce.tar.gz
clean up docstring
Diffstat (limited to 'src')
-rw-r--r--src/zope/publisher/http.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/zope/publisher/http.py b/src/zope/publisher/http.py
index 01a6b9e..85dc517 100644
--- a/src/zope/publisher/http.py
+++ b/src/zope/publisher/http.py
@@ -168,8 +168,11 @@ init_status_codes()
class LenientCookie(cookies.SimpleCookie):
- """LenientCookie will not destroy all cookies
- in a request when one invalid key is used
+ """Handler that drops individual cookies when invalid keys are used.
+
+ The reduces the number of cases for which a malformed Cookie: header
+ can cause all cookies to be lost.
+
"""
def __setitem__(self, key, value):