Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Year Out Of Range In Python?

I have an Open Source application installed on my system, designed in python, now I am trying to insert a date older then 1900, it results in an error **Year Out Of Range** Now I am thinking to resolve it so that it will allow me to store any date from 1000 - 9999 years. Is this error due to python or because of my application, any suggestions and solutions will be highly appreciated.

like image 706
ScoRpion Avatar asked Jul 23 '26 12:07

ScoRpion


1 Answers

This is a reported python bug. A patch is available at that address.

like image 73
CamilleLDN Avatar answered Jul 26 '26 03:07

CamilleLDN