From 7859f18c1004bcca8531f30b783e602d67fce187 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 6 Sep 2008 19:28:11 +0000 Subject: #1638033: add support for httponly on Cookie.Morsel Reviewer: Benjamin --- Lib/Cookie.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Lib') diff --git a/Lib/Cookie.py b/Lib/Cookie.py index e1eb7348bc..b2f7427aa9 100644 --- a/Lib/Cookie.py +++ b/Lib/Cookie.py @@ -408,6 +408,9 @@ class Morsel(dict): # For historical reasons, these attributes are also reserved: # expires # + # This is an extension from Microsoft: + # httponly + # # This dictionary provides a mapping from the lowercase # variant on the left to the appropriate traditional # formatting on the right. @@ -417,6 +420,7 @@ class Morsel(dict): "domain" : "Domain", "max-age" : "Max-Age", "secure" : "secure", + "httponly" : "httponly", "version" : "Version", } @@ -499,6 +503,8 @@ class Morsel(dict): RA("%s=%d" % (self._reserved[K], V)) elif K == "secure": RA(str(self._reserved[K])) + elif K == "httponly": + RA(str(self._reserved[K])) else: RA("%s=%s" % (self._reserved[K], V)) -- cgit v1.2.1