[Python-checkins] r71581 - python/branches/py3k/Misc/NEWS

r.david.murray python-checkins at python.org
Mon Apr 13 19:06:33 CEST 2009


Author: r.david.murray
Date: Mon Apr 13 19:06:33 2009
New Revision: 71581

Log:
Move NEWS item to correct section.


Modified:
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Mon Apr 13 19:06:33 2009
@@ -12,12 +12,6 @@
 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
@@ -32,6 +26,12 @@
 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 #2703: SimpleXMLRPCDispatcher.__init__: Provide default values for
   new arguments introduced in 2.5.
 


More information about the Python-checkins mailing list