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 ammar2
Recipients SilentGhost, ammar2, belopolsky, paul.moore, pekka.klarck, r.david.murray, steve.dower, tim.golden, tim.peters, vstinner, zach.ware
Date 2017-06-24.08:38:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498293489.84.0.049632232318.issue29097@psf.upfronthosting.co.za>
In-reply-to
Content
Hey, sorry for the late response. I just ran:

  import datetime
  from dateutil.zoneinfo import get_zonefile_instance
  import dateutil.tz

  zonenames = list(get_zonefile_instance().zones)

  for tz in zonenames:
      tz = dateutil.tz.gettz(tz)
      for i in range(86400):
          if datetime.datetime.fromtimestamp(i, tz).fold == 1:
              print(str(tz))

tz uses your OS's zone info so also posting my distro version:
Debian 8.8 - 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2 (2017-04-30) x86_64 GNU/Linux

And I got the same result, no timezone with folds in these range.
History
Date User Action Args
2017-06-24 08:38:09ammar2setrecipients: + ammar2, tim.peters, paul.moore, belopolsky, vstinner, tim.golden, r.david.murray, SilentGhost, pekka.klarck, zach.ware, steve.dower
2017-06-24 08:38:09ammar2setmessageid: <1498293489.84.0.049632232318.issue29097@psf.upfronthosting.co.za>
2017-06-24 08:38:09ammar2linkissue29097 messages
2017-06-24 08:38:09ammar2create