]> granicus.if.org Git - python/commitdiff
curses.tparm() is expecting a byte string, not curses.tigetstr()
authorPetri Lehtinen <petri@digip.org>
Sun, 6 Nov 2011 07:24:19 +0000 (09:24 +0200)
committerPetri Lehtinen <petri@digip.org>
Sun, 6 Nov 2011 07:24:19 +0000 (09:24 +0200)
Issue #10570

Misc/NEWS

index e550b52eda6f57f696dbd96f5e8692d6fdc553f7..199f9ff3624bb45bc46d05b9d748e09e2094b676 100644 (file)
--- 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.