• Victor Stinner's avatar
    Close #14223: Fix window.addch(curses.ACS_HLINE) · eaaf9e92
    Victor Stinner yazdı
    Fix window.addch() of the curses module for special characters like
    curses.ACS_HLINE: the Python function addch(int) and addch(bytes) is now
    calling the C function waddch()/mvwaddch() (as it was done in Python 3.2),
    instead of wadd_wch()/mvwadd_wch(). The Python function addch(str) is still
    calling the C function wadd_wch()/mvwadd_wch() if the Python curses is linked
    to libncursesw.
    eaaf9e92
_cursesmodule.c 101 KB