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 vstinner
Recipients helmut, r.david.murray, vstinner
Date 2013-06-02.20:12:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370203937.7.0.380348756145.issue18118@psf.upfronthosting.co.za>
In-reply-to
Content
Is your Python curses module linked to libncurses.so.5 or libncursesw.so.5? Example:

$ ldd /usr/lib/python2.7/lib-dynload/_cursesmodule.so |grep curses
	libncursesw.so.5 => /lib/libncursesw.so.5 (0x00375000)

libncursesw has a much better support of Unicode than libncurses.

Since Python 3.3, the Python curses.window.addstr() method uses waddwstr() when the module is linked to libncursesw, which also improves the Unicode support.
History
Date User Action Args
2013-06-02 20:12:17vstinnersetrecipients: + vstinner, helmut, r.david.murray
2013-06-02 20:12:17vstinnersetmessageid: <1370203937.7.0.380348756145.issue18118@psf.upfronthosting.co.za>
2013-06-02 20:12:17vstinnerlinkissue18118 messages
2013-06-02 20:12:17vstinnercreate