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 Paul Pinterits
Recipients Paul Pinterits
Date 2017-04-02.20:19:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1491164378.66.0.775281160942.issue29964@psf.upfronthosting.co.za>
In-reply-to
Content
%z is listed as a supported directive in the python 3 documentation (https://docs.python.org/3.5/library/time.html#time.strftime), but it doesn't actually do anything:

>>> from time import strptime
>>> strptime('+0000', '%z') == strptime('+0200', '%z')
True

As far as I can tell, there aren't any footnotes saying that %z might not be supported on some platforms, like it was back in python 2.

In case it matters, I'm using python 3.5.3 on linux.
History
Date User Action Args
2017-04-02 20:19:38Paul Pinteritssetrecipients: + Paul Pinterits
2017-04-02 20:19:38Paul Pinteritssetmessageid: <1491164378.66.0.775281160942.issue29964@psf.upfronthosting.co.za>
2017-04-02 20:19:38Paul Pinteritslinkissue29964 messages
2017-04-02 20:19:38Paul Pinteritscreate