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 belopolsky
Recipients belopolsky, gvanrossum, mark.dickinson
Date 2010-07-05.17:23:48
SpamBayes Score 0.0005205763
Marked as misclassified No
Message-id <1278350631.91.0.0204066285015.issue9005@psf.upfronthosting.co.za>
In-reply-to
Content
Similarly, it appears that


    if (*m < 1 || *m > 12) {
	--*m;
        normalize_pair(y, m, 12);
        ++*m;
        /* |y| can't be bigger than about                                                                                                                                                
         * |original y| + |original m|/12 now.                                                                                                                                           
         */
    }

in normalize_y_m_d(int *y, int *m, int *d) is a dead branch.
History
Date User Action Args
2010-07-05 17:23:51belopolskysetrecipients: + belopolsky, gvanrossum, mark.dickinson
2010-07-05 17:23:51belopolskysetmessageid: <1278350631.91.0.0204066285015.issue9005@psf.upfronthosting.co.za>
2010-07-05 17:23:48belopolskylinkissue9005 messages
2010-07-05 17:23:48belopolskycreate