summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-06 07:24:19 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-06 07:24:19 (GMT)
commitfd6b582a7128434ae7a5fb0e4c202cc04348ade7 (patch)
tree8fae9455ac2007f51cc928b3ce3f15e9fe26a6d1 /Misc
parent1ce4b14c4d8a5b5ff8de7d1a4aabf053d550d7d1 (diff)
downloadcpython-fd6b582a7128434ae7a5fb0e4c202cc04348ade7.zip
cpython-fd6b582a7128434ae7a5fb0e4c202cc04348ade7.tar.gz
cpython-fd6b582a7128434ae7a5fb0e4c202cc04348ade7.tar.bz2
curses.tparm() is expecting a byte string, not curses.tigetstr()
Issue #10570
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e550b52..199f9ff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -88,7 +88,7 @@ Library
- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao.
-- Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
+- Issue #10570: curses.putp() and curses.tparm() are now expecting a byte
string, instead of a Unicode string.
- Issue #2892: preserve iterparse events in case of SyntaxError.