Issue34135
Created on 2018-07-17 04:52 by maxtortime, last changed 2022-04-11 14:59 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg321790 - (view) | Author: Taehwan Kim (maxtortime) | Date: 2018-07-17 04:52 | |
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.
|
|||
| msg321809 - (view) | Author: Karthikeyan Singaravelan (xtreak) * ![]() |
Date: 2018-07-17 08:49 | |
There is some discussion about this at https://bugs.python.org/issue16322#msg251068 and seems the issue is a related one. Thanks |
|||
| msg400708 - (view) | Author: Irit Katriel (iritkatriel) * ![]() |
Date: 2021-08-31 10:34 | |
issue16322 was closed as a duplicate of issue36779 which was fixed. Does that resolve this problem as well? |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:03 | admin | set | github: 78316 |
| 2022-01-17 10:42:37 | iritkatriel | set | status: pending -> closed stage: resolved |
| 2021-12-12 19:05:24 | iritkatriel | set | status: open -> pending resolution: out of date |
| 2021-08-31 10:34:13 | iritkatriel | set | nosy:
+ iritkatriel messages: + msg400708 |
| 2018-07-17 08:49:01 | xtreak | set | nosy:
+ xtreak messages: + msg321809 |
| 2018-07-17 04:52:03 | maxtortime | create | |
