[Python-checkins] cpython: Move something to the right section of What's New

brett.cannon python-checkins at python.org
Sat Jun 15 04:37:18 CEST 2013


http://hg.python.org/cpython/rev/68f8f9d0cebf
changeset:   84137:68f8f9d0cebf
user:        Brett Cannon <brett at python.org>
date:        Fri Jun 14 22:37:11 2013 -0400
summary:
  Move something to the right section of What's New

files:
  Doc/whatsnew/3.4.rst |  10 ++++++----
  1 files changed, 6 insertions(+), 4 deletions(-)


diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -225,6 +225,11 @@
   :meth:`difflib.SequenceMatcher.isbpopulur`: use ``x in sm.bjunk`` and
   ``x in sm.bpopular``, where sm is a :class:`~difflib.SequenceMatcher` object.
 
+* :func:`importlib.util.module_for_loader` is pending deprecation. Using
+  :func:`importlib.util.module_to_load` and
+  :meth:`importlib.abc.Loader.init_module_attrs` allows subclasses of a loader
+  to more easily customize module loading.
+
 
 Deprecated functions and types of the C API
 -------------------------------------------
@@ -235,10 +240,7 @@
 Deprecated features
 -------------------
 
-* :func:`importlib.util.module_for_loader` is pending deprecation. Using
-  :func:`importlib.util.module_to_load` and
-  :meth:`importlib.abc.Loader.init_module_attrs` allows subclasses of a loader
-  to more easily customize module loading.
+* None yet.
 
 
 Porting to Python 3.4

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list