aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/cookies.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http/cookies.py')
-rw-r--r--netlib/http/cookies.py23
1 files changed, 7 insertions, 16 deletions
diff --git a/netlib/http/cookies.py b/netlib/http/cookies.py
index 7f32eddf..1421d8eb 100644
--- a/netlib/http/cookies.py
+++ b/netlib/http/cookies.py
@@ -302,23 +302,14 @@ def is_expired(cookie_attrs):
Returns: boolean
"""
- # See if 'expires' time is in the past
- expires = False
- if 'expires' in cookie_attrs:
- e = email.utils.parsedate_tz(cookie_attrs["expires"])
- if e:
- exp_ts = email.utils.mktime_tz(e)
- now_ts = time.time()
- expires = exp_ts < now_ts
-
- # or if Max-Age is 0
- max_age = False
- try:
- max_age = int(cookie_attrs.get('Max-Age', 1)) == 0
- except ValueError:
- pass
+ exp_ts = get_expiration_ts(cookie_attrs)
+ now_ts = time.time()
- return expires or max_age
+ # If no expiration information was provided with the cookie
+ if exp_ts is None:
+ return False
+ else:
+ return exp_ts <= now_ts
def group_cookies(pairs):