[issue14223] curses addch broken on Python3.3a1

Ned Deily report at bugs.python.org
Mon Sep 3 18:57:51 CEST 2012


Ned Deily added the comment:

> Can that possibly be right??

Yes. That's the version of ncurses that Apple ships with current versions of OS X. You can build it yourself and install into /usr/local and rebuild python.  For ncurses 5.9, something like:

./configure  --enable-widec --enable-shared --with-shared --without-normal
&& make && sudo make install

should work.  FWIW, when I run your test script with tip, I now do see the two horizontal bars.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14223>
_______________________________________


More information about the Python-bugs-list mailing list