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 amaury.forgeotdarc, belopolsky, brett.cannon, brian.curtin, daniel.urban, lemburg, mark.dickinson, pitrou, r.david.murray, rhettinger, techtonik, tim.peters, vstinner
Date 2010-07-02.21:24:20
SpamBayes Score 0.0029463111
Marked as misclassified No
Message-id <1278105862.12.0.989714683342.issue7989@psf.upfronthosting.co.za>
In-reply-to
Content
This comment in datetime.__new__ makes me +0.5 on s/__/_/:


	self = date.__new__(cls, year, month, day)
        # XXX This duplicates __year, __month, __day for convenience :-(                                                                                                                 
        self.__year = year
        self.__month = month
        self.__day = day

Tim,

Do you remember why it was a good idea to derive datetime from date?
History
Date User Action Args
2010-07-02 21:24:22belopolskysetrecipients: + belopolsky, lemburg, tim.peters, brett.cannon, rhettinger, amaury.forgeotdarc, mark.dickinson, pitrou, vstinner, techtonik, r.david.murray, brian.curtin, daniel.urban
2010-07-02 21:24:22belopolskysetmessageid: <1278105862.12.0.989714683342.issue7989@psf.upfronthosting.co.za>
2010-07-02 21:24:20belopolskylinkissue7989 messages
2010-07-02 21:24:20belopolskycreate