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 culler
Recipients culler
Date 2017-05-08.21:42:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494279736.5.0.821030807704.issue30310@psf.upfronthosting.co.za>
In-reply-to
Content
And that is a very bad assumption. On Windows 10 in the Japanese locale the default TkFixedFont has family u'\uff2d\uff33 \u30b4\u30b7\u30c3\u30af' (a transliteration of MS Gothic).

The error occurs on line 51:

     47     def _set(self, kw):
     48         options = []
     49         for k, v in kw.items():
     50             options.append("-"+k)
>>>> 51             options.append(str(v))
     52         return tuple(options)

I will attach a screenshot showing the crash on a Japanese Windows 10 system, running in the Python 2.7 command line application.
History
Date User Action Args
2017-05-08 21:42:16cullersetrecipients: + culler
2017-05-08 21:42:16cullersetmessageid: <1494279736.5.0.821030807704.issue30310@psf.upfronthosting.co.za>
2017-05-08 21:42:16cullerlinkissue30310 messages
2017-05-08 21:42:16cullercreate