]> granicus.if.org Git - python/commitdiff
Merged revisions 71579 via svnmerge from
authorR. David Murray <rdmurray@bitdance.com>
Mon, 13 Apr 2009 17:00:25 +0000 (17:00 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Mon, 13 Apr 2009 17:00:25 +0000 (17:00 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71579 | r.david.murray | 2009-04-13 12:56:32 -0400 (Mon, 13 Apr 2009) | 2 lines

  Add missing NEWS item for issue1161031 fix.
........

Misc/NEWS

index b5b4928d59e35b6742d387bb8bce4b5a08e93493..d2207e3e34c91ddf9cf9dddf6ff114e30448b9e7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 3.1 beta 1?
 Core and Builtins
 -----------------
 
+- Issue #1161031: fix readwrite select flag handling: POLLPRI now
+  results in a handle_expt_event call, not handle_read_event, and POLLERR
+  and POLLNVAL now call handle_close, not handle_expt_event.  Also,
+  dispatcher now has an 'ignore_log_types' attribute for suppressing
+  log messages, which is set to 'warning' by default.
+
 - The string.maketrans() function is deprecated; there is a new static method
   maketrans() on the bytes and bytearray classes.  This removes confusion about
   the types string.maketrans() is supposed to work with, and mirrors the