Florent Xicluna <florent.xicl...@gmail.com> added the comment: It fails for very low negative years: -2147481749 <= year <= -2147483648 (-1<<31) + 1900 <= year <= (-1<<31)
Every other value behaves correctly on this FreeBSD buildbot: - (-1<<31) + 1900 < year < (+1<<31) : correctly formatted with '%Z' - year < (-1<<31) : raises OverfowError - year >= (+1<<31) : raises OverfowError ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue13312> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com