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 iandekit, jcea, mschmarck, vstinner
Date 2011-12-08.00:53:17
SpamBayes Score 1.3335683e-10
Marked as misclassified No
Message-id <1323305598.14.0.0193622635558.issue13552@psf.upfronthosting.co.za>
In-reply-to
Content
The _curses module has two issues on OpenSolaris:

 - using the default curses library, mvwchgat() cannot be found and _curses module compilation fails
 - there is a "XPG4 curses" library. I tried to use it using various hacks in _cursesmodule.c and setup.py, but test_curses failed with a crash.
 - if the readline library (not the Python module) is linked to libncursesw, the compilation of the _curses module fails because cchar_t is not defined. I suppose that curses.h is the bytes library, not the ncursesw Unicode library.

See issue #12567 for the ncursesw issue and issue #3786 for the mvwchgat() problem. The issue #3786 contains information about XPG4 curses and has a (non working) patch for the mvwchgat() issue.

--

I opened a new issue because #12567 is more specific to Unicode, and #3786 talks about various issues (it is not specific to curses).
History
Date User Action Args
2011-12-08 00:53:18vstinnersetrecipients: + vstinner, jcea, mschmarck, iandekit
2011-12-08 00:53:18vstinnersetmessageid: <1323305598.14.0.0193622635558.issue13552@psf.upfronthosting.co.za>
2011-12-08 00:53:17vstinnerlinkissue13552 messages
2011-12-08 00:53:17vstinnercreate