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 maxtortime
Recipients maxtortime, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-07-17.04:52:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531803123.68.0.56676864532.issue34135@psf.upfronthosting.co.za>
In-reply-to
Content
When I call time.tzname at Korean Windows. (Microsoft Windows 10 Pro(10.0.17134 Build 17134))

It prints like below. This problem occurred Python 2 and 3 both.
>>> import time
>>> time.tzname
('´ëÇѹα¹ Ç¥ÁؽÃ', '´ëÇѹα¹ Àϱ¤ Àý¾à ½Ã°£')

I used chardet for getting correct tzname.
>>> import chardet
>>> tzname = [tzn.encode('latin-1').decode('cp949') for tzn in time.tzname]
>>> tzname
['대한민국 표준시', '대한민국 일광 절약 시간']

I think that cause of this problem is tzname encoded by 'latin-1' at Window s.
History
Date User Action Args
2018-07-17 04:52:03maxtortimesetrecipients: + maxtortime, paul.moore, tim.golden, zach.ware, steve.dower
2018-07-17 04:52:03maxtortimesetmessageid: <1531803123.68.0.56676864532.issue34135@psf.upfronthosting.co.za>
2018-07-17 04:52:03maxtortimelinkissue34135 messages
2018-07-17 04:52:03maxtortimecreate