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
Date 2016-07-31.22:12:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470003141.22.0.331878271067.issue27661@psf.upfronthosting.co.za>
In-reply-to
Content
Add an optional tzinfo argument to datetime.combine() so that

 datetime.combine(d, t, info)

returns the same object as

 datetime.combine(d, t).replace(tzinfo=info)

but without creating an intermediate naive instance.

Guido's LGTM: https://mail.python.org/pipermail/datetime-sig/2016-July/000993.html
History
Date User Action Args
2016-07-31 22:12:21belopolskysetrecipients: + belopolsky
2016-07-31 22:12:21belopolskysetmessageid: <1470003141.22.0.331878271067.issue27661@psf.upfronthosting.co.za>
2016-07-31 22:12:21belopolskylinkissue27661 messages
2016-07-31 22:12:20belopolskycreate