summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-09-01 13:00:34 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-09-01 13:00:34 (GMT)
commiteaaf9e924919d046d71403754c15524092a2c3f3 (patch)
tree3e7dd0a0fb399305becdb622c87b5a955a29c16f /Misc
parent848cdfdf97f3671f75aa98438f228e36e7d0a310 (diff)
downloadcpython-eaaf9e924919d046d71403754c15524092a2c3f3.zip
cpython-eaaf9e924919d046d71403754c15524092a2c3f3.tar.gz
cpython-eaaf9e924919d046d71403754c15524092a2c3f3.tar.bz2
Close #14223: Fix window.addch(curses.ACS_HLINE)
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ccf60c2..3d55f54 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,13 @@ Library
always returning an integer. So it is now possible to distinguish special
keys like keypad keys.
+- Issue #14223: 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.
+
What's New in Python 3.3.0 Release Candidate 1?
===============================================