Issue #10570: curses.putp() is now expecting a byte string, instead of a
Unicode string.
This is an incompatible change, but putp() is used to emit terminfo commands,
which are bytes strings, not Unicode strings.
diff --git a/Misc/NEWS b/Misc/NEWS
index 993dfae..276f665 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,8 +66,8 @@
Library
-------
-- Issue #10570: curses.tigetstr() is now expecting a byte string, instead of
- a Unicode string.
+- Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte
+ string, instead of a Unicode string.
- Issue #2892: preserve iterparse events in case of SyntaxError.