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 flox
Recipients belopolsky, flox, python-dev
Date 2011-11-02.07:09:10
SpamBayes Score 0.16445996
Marked as misclassified No
Message-id <1320217751.02.0.267420580632.issue13312@psf.upfronthosting.co.za>
In-reply-to
Content
It fails for very low negative years:
  -2147483648 <= year < -2147481748 
  (-1<<31)    <= year < (-1<<31) + 1900 

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
History
Date User Action Args
2011-11-02 07:09:11floxsetrecipients: + flox, belopolsky, python-dev
2011-11-02 07:09:11floxsetmessageid: <1320217751.02.0.267420580632.issue13312@psf.upfronthosting.co.za>
2011-11-02 07:09:10floxlinkissue13312 messages
2011-11-02 07:09:10floxcreate