]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
NEWS item for fix for Issue #1161031.
authorR. David Murray <rdmurray@bitdance.com>
Mon, 13 Apr 2009 17:08:50 +0000 (17:08 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Mon, 13 Apr 2009 17:08:50 +0000 (17:08 +0000)
Misc/NEWS

index 022141b7be8c19f4f219a38e1d85da413642bf2f..8d65ae4c9a9361b4e344e9c71706565594157203 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,12 @@ Core and Builtins
 Library
 -------
 
+- 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.
+
 - Issue #1491431: Fixed distutils.filelist.glob_to_re for edge cases.
   Initial fix by Wayne Davison.