From: R. David Murray Date: Mon, 13 Apr 2009 17:08:50 +0000 (+0000) Subject: NEWS item for fix for Issue #1161031. X-Git-Tag: 3.0~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a2450da332856107d03b769bcf9ed663c3ccaa7;p=thirdparty%2FPython%2Fcpython.git NEWS item for fix for Issue #1161031. --- diff --git a/Misc/NEWS b/Misc/NEWS index 022141b7be8c..8d65ae4c9a93 100644 --- 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.