[issue32786] Didnot work strftime() when hangeul in format sting

2018-02-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are hundreds of bug fixes in 3.6 that are not in 3.4. If there is a Django version that works with 3.6 and you can otherwise upgrade, think about doing so. -- nosy: +terry.reedy resolution: -> out of date stage: -> resolved

[issue32786] Didnot work strftime() when hangeul in format sting

2018-02-07 Thread Larry Hastings
Change by Larry Hastings : -- nosy: -larry ___ Python tracker ___ ___ Python-bugs-list

[issue32786] Didnot work strftime() when hangeul in format sting

2018-02-07 Thread Myungseo Kang
Myungseo Kang added the comment: It works correctly in python 3.6 I think this problem is occured only python 3.4 First, I changed this code like below. ``` '{0:%Y}년 {0:%-m}월 {0:%-d}일'.format(proposal.hold_end_date) ``` But I wonder why doesn't work in only python 3.4

[issue32786] Didnot work strftime() when hangeul in format sting

2018-02-07 Thread Larry Hastings
Larry Hastings added the comment: This is not an Argument Clinic problem. -- components: +Library (Lib) -Argument Clinic ___ Python tracker

[issue32786] Didnot work strftime() when hangeul in format sting

2018-02-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thank you for your contribution, Just one question, do you have the same issue with Python 3.6 because Python 3.4 is a security release, Python 3.6 is a bugfix release. Thank you, -- nosy: +matrixise

[issue32786] Didnot work strftime() when hangeul in format sting

2018-02-06 Thread Myungseo Kang
New submission from Myungseo Kang : Good morning. I have a question while writing Python code in Django. I got empty string when I ran code in a screenshot. But it works in python interprerter(python manage.py shell). I don't know why it works or didn't work. I think maybe