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 vstinner
Recipients barry, r.david.murray, vstinner, xtreak
Date 2018-11-26.15:26:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543245961.96.0.788709270274.issue35317@psf.upfronthosting.co.za>
In-reply-to
Content
Miro Hrončok:
> I found a C reproducer and reported to Fedora glibc tracker: https://bugzilla.redhat.com/show_bug.cgi?id=1653340

Nice, I wrote almost the same one :-) See attached mktime_bug.c:

$ gcc mktime_bug.c -o mktime_bug
$ ./mktime_bug 
TZ=CET: mktime() -> 1331506860, errno=0
TZ=UTC: mktime() -> 1331514060, errno=0

$ ./mktime_bug
TZ=CET: mktime() -> 1331506860, errno=0
TZ=UTC: mktime() -> -1, errno=75
History
Date User Action Args
2018-11-26 15:26:01vstinnersetrecipients: + vstinner, barry, r.david.murray, xtreak
2018-11-26 15:26:01vstinnersetmessageid: <1543245961.96.0.788709270274.issue35317@psf.upfronthosting.co.za>
2018-11-26 15:26:01vstinnerlinkissue35317 messages
2018-11-26 15:26:01vstinnercreate