]> granicus.if.org Git - python/commitdiff
Backed out changeset: a29b49d57769
authorSteve Dower <steve.dower@microsoft.com>
Sun, 6 Sep 2015 06:09:00 +0000 (23:09 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sun, 6 Sep 2015 06:09:00 +0000 (23:09 -0700)
Misc/NEWS
Modules/timemodule.c

index 834e20a815886c825aa7692a2e8678de444630ee..dd175fead46e030d58893938c2bb7a1795a7d149 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,8 +84,6 @@ Library
 - Issue #16180: Exit pdb if file has syntax error, instead of trapping user
   in an infinite loop.  Patch by Xavier de Gaye.
 
-- Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
-
 - Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
   Patch from Berker Peksag.
 
index f7295946917eaf84728e7955ca2e9a86eb9b038b..d0917a40730b813cd2ee7575e8694b9e16507175 100644 (file)
@@ -662,12 +662,6 @@ time_strftime(PyObject *self, PyObject *args)
                             "format %y requires year >= 1900 on AIX");
             return NULL;
         }
-        else if (outbuf[1] == '\0')
-        {
-            PyErr_SetString(PyExc_ValueError, "Incomplete format string");
-            Py_DECREF(format);
-            return NULL;
-        }
     }
 #endif