[issue33226] In some envrionment using unicode, formatwarning shows ascii error

2018-04-04 Thread Seyeong Kim
Change by Seyeong Kim : -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33226] In some envrionment using unicode, formatwarning shows ascii error

2018-04-04 Thread Ned Deily
Change by Ned Deily : -- nosy: +serhiy.storchaka type: crash -> ___ Python tracker ___ ___

[issue33226] In some envrionment using unicode, formatwarning shows ascii error

2018-04-04 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +6089 stage: -> patch review ___ Python tracker ___

[issue33226] In some envrionment using unicode, formatwarning shows ascii error

2018-04-04 Thread Seyeong Kim
New submission from Seyeong Kim : In some circumstances using unicode, formatwarning show me ascii error so I should prefix on below line to remove this crash s = "%s: %s: %s\n" % (lineno, category.__name__, message) to s = u"%s: %s: %s\n" % (lineno,