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 dendory
Recipients dendory
Date 2015-06-26.19:13:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435346025.05.0.415032825862.issue24517@psf.upfronthosting.co.za>
In-reply-to
Content
Using `%z` gives the same result as using `%Z` in `time.strftime()`:

    Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:43:06) [MSC v.1600 32 bit (Intel)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import time
    >>> time.strftime("%z")
    'Eastern Daylight Time'
    >>> time.strftime("%Z")
    'Eastern Daylight Time'

Instead it's supposed to give a +0000 or -0000 result.
History
Date User Action Args
2015-06-26 19:13:45dendorysetrecipients: + dendory
2015-06-26 19:13:45dendorysetmessageid: <1435346025.05.0.415032825862.issue24517@psf.upfronthosting.co.za>
2015-06-26 19:13:45dendorylinkissue24517 messages
2015-06-26 19:13:44dendorycreate