Commit 161fbeae authored by Victor Stinner's avatar Victor Stinner

merge 3.2

parents ee525de6 6f0e4f99
...@@ -476,9 +476,8 @@ time_strftime(PyObject *self, PyObject *args) ...@@ -476,9 +476,8 @@ time_strftime(PyObject *self, PyObject *args)
#if defined(_MSC_VER) || defined(sun) #if defined(_MSC_VER) || defined(sun)
if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) { if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) {
PyErr_Format(PyExc_ValueError, PyErr_SetString(PyExc_ValueError,
"strftime() requires year in [1; 9999]", "strftime() requires year in [1; 9999]");
buf.tm_year + 1900);
return NULL; 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