I have been search all over the net and couldn't find an appropriate solution for this issue
OverflowError: mktime argument out of range
The code that causes this exception
t = (1956, 3, 2, 0, 0, 0, 0, 0, 0)
ser = time.mktime(t)
I would like to know the actual reason for this exception, some say that the date is not in a valid range but it doesn't make any sense to me, and if there's a range what it could be. Is it depends upon the system that we are using. Also would like to know a good solution for this issue.
Thanks.