From: Petri Lehtinen Date: Sun, 6 Nov 2011 07:24:19 +0000 (+0200) Subject: curses.tparm() is expecting a byte string, not curses.tigetstr() X-Git-Tag: v3.2.3rc1~417 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd6b582a7128434ae7a5fb0e4c202cc04348ade7;p=thirdparty%2FPython%2Fcpython.git curses.tparm() is expecting a byte string, not curses.tigetstr() Issue #10570 --- diff --git a/Misc/NEWS b/Misc/NEWS index e550b52eda6f..199f9ff3624b 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.