diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
commit | 4a7c03aab455613e9ba898b7cae73459fadd57ac (patch) | |
tree | d09ea360154f3e045e2f5a76a172b0e6417fc957 /Lib/http | |
parent | df8f5b56c9dc5e950f39ed0221212256a39c1835 (diff) | |
parent | f51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff) | |
download | cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.zip cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.5.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/cookiejar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py index b1ba72e..e215398 100644 --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -1437,7 +1437,7 @@ class CookieJar: break # convert RFC 2965 Max-Age to seconds since epoch # XXX Strictly you're supposed to follow RFC 2616 - # age-calculation rules. Remember that zero Max-Age is a + # age-calculation rules. Remember that zero Max-Age # is a request to discard (old and new) cookie, though. k = "expires" v = self._now + v |