curses.tparm() is expecting a byte string, not curses.tigetstr()

Issue #10570
This commit is contained in:
Petri Lehtinen 2011-11-06 09:24:19 +02:00
parent 1ce4b14c4d
commit fd6b582a71
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ Library
- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. - Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao. 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. string, instead of a Unicode string.
- Issue #2892: preserve iterparse events in case of SyntaxError. - Issue #2892: preserve iterparse events in case of SyntaxError.