]> granicus.if.org Git - python/commitdiff
Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime...
authorBerker Peksag <berker.peksag@gmail.com>
Mon, 14 Mar 2016 03:48:02 +0000 (05:48 +0200)
committerBerker Peksag <berker.peksag@gmail.com>
Mon, 14 Mar 2016 03:48:02 +0000 (05:48 +0200)
Lib/http/cookiejar.py
Lib/test/test_http_cookiejar.py
Misc/NEWS

index ac5e667dba77680e2c6bbd337dfda73090dc10ab..bd367f94cac6b6ec22ddbb61359a4776ed969620 100644 (file)
@@ -143,6 +143,10 @@ def offset_from_tz_string(tz):
     return offset
 
 def _str2time(day, mon, yr, hr, min, sec, tz):
+    yr = int(yr)
+    if yr > datetime.MAXYEAR:
+        return None
+
     # translate month name to number
     # month numbers start with 1 (January)
     try:
@@ -163,7 +167,6 @@ def _str2time(day, mon, yr, hr, min, sec, tz):
     if min is None: min = 0
     if sec is None: sec = 0
 
-    yr = int(yr)
     day = int(day)
     hr = int(hr)
     min = int(min)
index 50260ffe5cef4e8e803b4b2d4954e0033b79ff32..ea3c827fb7e32e366e06ed2fb9996d7e7d416622 100644 (file)
@@ -91,6 +91,10 @@ class DateTimeTests(unittest.TestCase):
             '01-01-1980 25:00:00',
             '01-01-1980 00:61:00',
             '01-01-1980 00:00:62',
+            '08-Oct-3697739',
+            '08-01-3697739',
+            '09 Feb 19942632 22:23:32 GMT',
+            'Wed, 09 Feb 1994834 22:23:32 GMT',
             ]:
             self.assertIsNone(http2time(test),
                               "http2time(%s) is not None\n"
index b7a26176812d3f5488874521a1774a992aae600f..58ee5a478bbeaa2db9d93f4b746de913159c7ad3 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,6 +91,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #16181: cookiejar.http2time() now returns None if year is higher than
+  datetime.MAXYEAR.
+
 - Issue #26513: Fixes platform module detection of Windows Server
 
 - Issue #23718: Fixed parsing time in week 0 before Jan 1.  Original patch by