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 Piotr Kamoda
Recipients Piotr Kamoda
Date 2019-05-13.09:29:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557739759.84.0.347644793793.issue36899@roundup.psfhosted.org>
In-reply-to
Content
See below code:
>>> datetime.utcfromtimestamp(1557395250).astimezone(get_localzone()).strftime('%Y-%m-%d %H:%M:%S %z %Z')
'2019-05-09 09:47:30 +0200 CEST'
>>> datetime.fromtimestamp(1557395250).astimezone(get_localzone()).strftime('%Y-%m-%d %H:%M:%S %z %Z')
'2019-05-09 11:47:30 +0200 CEST'

As you can see, utcfromtimestamp refuses to be 'timezoned', second one is correct.
History
Date User Action Args
2019-05-13 09:29:19Piotr Kamodasetrecipients: + Piotr Kamoda
2019-05-13 09:29:19Piotr Kamodasetmessageid: <1557739759.84.0.347644793793.issue36899@roundup.psfhosted.org>
2019-05-13 09:29:19Piotr Kamodalinkissue36899 messages
2019-05-13 09:29:19Piotr Kamodacreate