Commit c3b46f75 authored by Steve Dower's avatar Steve Dower

Backed out changeset: a29b49d57769

parent a48becb2
...@@ -84,8 +84,6 @@ Library ...@@ -84,8 +84,6 @@ Library
- Issue #16180: Exit pdb if file has syntax error, instead of trapping user - Issue #16180: Exit pdb if file has syntax error, instead of trapping user
in an infinite loop. Patch by Xavier de Gaye. 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. - Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
Patch from Berker Peksag. Patch from Berker Peksag.
......
...@@ -662,12 +662,6 @@ time_strftime(PyObject *self, PyObject *args) ...@@ -662,12 +662,6 @@ time_strftime(PyObject *self, PyObject *args)
"format %y requires year >= 1900 on AIX"); "format %y requires year >= 1900 on AIX");
return NULL; return NULL;
} }
else if (outbuf[1] == '\0')
{
PyErr_SetString(PyExc_ValueError, "Incomplete format string");
Py_DECREF(format);
return NULL;
}
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment