Message150343
| Author | vstinner |
|---|---|
| Recipients | Ramchandra Apte, belopolsky, flox, patrick.vrijlandt, tim.golden, vstinner |
| Date | 2011-12-29.18:44:39 |
| SpamBayes Score | 0.09483528 |
| Marked as misclassified | No |
| Message-id | <1325184280.13.0.684009143455.issue13674@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
timemodule.c has the following check:
#if defined(_MSC_VER) || defined(sun)
if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) {
PyErr_SetString(PyExc_ValueError,
"strftime() requires year in [1; 9999]");
return NULL;
}
#endif |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2011-12-29 18:44:40 | vstinner | set | recipients: + vstinner, belopolsky, tim.golden, flox, patrick.vrijlandt, Ramchandra Apte |
| 2011-12-29 18:44:40 | vstinner | set | messageid: <1325184280.13.0.684009143455.issue13674@psf.upfronthosting.co.za> |
| 2011-12-29 18:44:39 | vstinner | link | issue13674 messages |
| 2011-12-29 18:44:39 | vstinner | create | |