summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-03 19:35:40 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-03 19:35:40 (GMT)
commitb3bc7e764db4327953aaaf1316e0edc0ff6b16fb (patch)
treee6aab05b9902ed7b68d4e43f7e0d824d27bc5adf /Misc
parent9c2f42f253d37496d52178377ab5e88f2e231401 (diff)
downloadcpython-b3bc7e764db4327953aaaf1316e0edc0ff6b16fb.zip
cpython-b3bc7e764db4327953aaaf1316e0edc0ff6b16fb.tar.gz
cpython-b3bc7e764db4327953aaaf1316e0edc0ff6b16fb.tar.bz2
Issue #10570: curses.putp() is now expecting a byte string, instead of a
Unicode string. This is an incompatible change, but putp() is used to emit terminfo commands, which are bytes strings, not Unicode strings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 993dfae..276f665 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,8 +66,8 @@ Core and Builtins
Library
-------
-- Issue #10570: curses.tigetstr() is now expecting a byte string, instead of
- a Unicode string.
+- Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
+ string, instead of a Unicode string.
- Issue #2892: preserve iterparse events in case of SyntaxError.