• Victor Stinner's avatar
    Close #14223: Fix window.addch(curses.ACS_HLINE) · c6a8b558
    Victor Stinner authored
    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.
    c6a8b558
NEWS 364 KB