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:48:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543247298.05.0.788709270274.issue35317@psf.upfronthosting.co.za>
In-reply-to
Content
I'm able to reproduce the issue on FreeBSD 12.0-RC2:

vstinner@freebsd$ TZ=CET ./python -m test test_email -m 'test_localtime_daylight_*'  -v
(...)
Tests result: SUCCESS

vstinner@freebsd$ TZ=UTC ./python -m test test_email -m 'test_localtime_daylight_*'  -v
(...)
======================================================================
ERROR: test_localtime_daylight_false_dst_true (test.test_email.test_utils.LocaltimeTests)
----------------------------------------------------------------------
(...)
  File "/usr/home/vstinner/prog/python/master/Lib/email/utils.py", line 361, in localtime
    seconds = time.mktime(tm)
OverflowError: mktime argument out of range

======================================================================
ERROR: test_localtime_daylight_true_dst_true (test.test_email.test_utils.LocaltimeTests)
----------------------------------------------------------------------
(...)
  File "/usr/home/vstinner/prog/python/master/Lib/email/utils.py", line 361, in localtime
    seconds = time.mktime(tm)
OverflowError: mktime argument out of range
History
Date User Action Args
2018-11-26 15:48:18vstinnersetrecipients: + vstinner, barry, r.david.murray, xtreak
2018-11-26 15:48:18vstinnersetmessageid: <1543247298.05.0.788709270274.issue35317@psf.upfronthosting.co.za>
2018-11-26 15:48:18vstinnerlinkissue35317 messages
2018-11-26 15:48:18vstinnercreate