Issue #10864: limit year to [1; 9999] for strftime() on Solaris
This commit is contained in:
parent
f332abbf15
commit
06ec45e2f8
@ -474,7 +474,7 @@ time_strftime(PyObject *self, PyObject *args)
|
|||||||
else if (!gettmarg(tup, &buf) || !checktm(&buf))
|
else if (!gettmarg(tup, &buf) || !checktm(&buf))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#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_Format(PyExc_ValueError,
|
||||||
"strftime() requires year in [1; 9999]",
|
"strftime() requires year in [1; 9999]",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user