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 xiang.zhang
Recipients jiangping.li, rhettinger, serhiy.storchaka, xiang.zhang
Date 2016-09-23.08:02:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474617734.06.0.547803077836.issue28253@psf.upfronthosting.co.za>
In-reply-to
Content
calendar internally relies on datetime and uses datetime.date. datetime.date can't represent date more than 9999.12.31 so some logic is broken for it(normally the week list should be of length 7, date outside the month will be (0, x) pair but this is not the case for 9999.12). This won't affect prmonth since it doesn't do center formatting. We can change to that behaviour to fix this. calendar_pryear_9999 tires to fix this.
History
Date User Action Args
2016-09-23 08:02:14xiang.zhangsetrecipients: + xiang.zhang, rhettinger, serhiy.storchaka, jiangping.li
2016-09-23 08:02:14xiang.zhangsetmessageid: <1474617734.06.0.547803077836.issue28253@psf.upfronthosting.co.za>
2016-09-23 08:02:14xiang.zhanglinkissue28253 messages
2016-09-23 08:02:13xiang.zhangcreate