]> 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:26:17 +0000 (09:26 +0200)
committerPetri Lehtinen <petri@digip.org>
Sun, 6 Nov 2011 07:26:52 +0000 (09:26 +0200)
Issue #10570

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index a71a816814bb945b50b9730483fc8c4cabce5849,199f9ff3624bb45bc46d05b9d748e09e2094b676..27e4117885ca3705773f135420cea5a74267aa94
+++ b/Misc/NEWS
@@@ -374,20 -88,11 +374,20 @@@ Librar
  - 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
 +- Byte compilation in packaging is now isolated from the calling Python -B or
 +  -O options, instead of being disallowed under -B or buggy under -O.
 +
+ - Issue #10570: curses.putp() and curses.tparm() are now expecting a byte
    string, instead of a Unicode string.
  
 +- Issue #13295: http.server now produces valid HTML 4.01 strict.
 +
  - Issue #2892: preserve iterparse events in case of SyntaxError.
  
 +- Issue #13287: urllib.request and urllib.error now contains an __all__
 +  attribute to expose only relevant classes and functions.  Patch by Florent
 +  Xicluna.
 +
  - Issue #670664: Fix HTMLParser to correctly handle the content of
    ``<script>...</script>`` and ``<style>...</style>``.