summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-04-13 17:00:25 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-04-13 17:00:25 (GMT)
commit2e8cd15640b567f818d5292b19ff2b5bcfeb4b21 (patch)
tree2cda6f6634d76eab17c13ffa0dc25c625b352e15
parentf1f003ca0afe5c42e52ae044b65e913a04c00d0b (diff)
downloadcpython-2e8cd15640b567f818d5292b19ff2b5bcfeb4b21.zip
cpython-2e8cd15640b567f818d5292b19ff2b5bcfeb4b21.tar.gz
cpython-2e8cd15640b567f818d5292b19ff2b5bcfeb4b21.tar.bz2
Merged revisions 71579 via svnmerge from
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. ........
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b5b4928..d2207e3 100644
--- 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