From fd6b582a7128434ae7a5fb0e4c202cc04348ade7 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Sun, 6 Nov 2011 09:24:19 +0200 Subject: [PATCH] curses.tparm() is expecting a byte string, not curses.tigetstr() Issue #10570 --- Misc/NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index e550b52eda6..199f9ff3624 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.