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 eryksun
Recipients Aaron.Meurer, Václav Dvořák, civalin, docs@python, eryksun, ezio.melotti, kepkin, martin-t, paul.moore, r.david.murray, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-02-18.07:08:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455779294.1.0.0171926295883.issue20010@psf.upfronthosting.co.za>
In-reply-to
Content
%z works correctly in the new CRT that's used by 3.5:

    Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:54:25)
    [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import time
    >>> time.strftime('%z', time.localtime(time.time()))
    '-0000'
    >>> time.strftime('%Z', time.localtime(time.time()))
    'Coordinated Universal Time'
History
Date User Action Args
2016-02-18 07:08:14eryksunsetrecipients: + eryksun, paul.moore, vstinner, tim.golden, ezio.melotti, r.david.murray, Aaron.Meurer, docs@python, zach.ware, steve.dower, civalin, kepkin, martin-t, Václav Dvořák
2016-02-18 07:08:14eryksunsetmessageid: <1455779294.1.0.0171926295883.issue20010@psf.upfronthosting.co.za>
2016-02-18 07:08:13eryksunlinkissue20010 messages
2016-02-18 07:08:13eryksuncreate