This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:40vstinnersetrecipients: + vstinner, belopolsky, tim.golden, flox, patrick.vrijlandt, Ramchandra Apte
2011-12-29 18:44:40vstinnersetmessageid: <1325184280.13.0.684009143455.issue13674@psf.upfronthosting.co.za>
2011-12-29 18:44:39vstinnerlinkissue13674 messages
2011-12-29 18:44:39vstinnercreate