]> granicus.if.org Git - python/commitdiff
Shift a deprecation from the porting section to the deprecation section.
authorBrett Cannon <brett@python.org>
Tue, 25 Sep 2012 19:23:07 +0000 (15:23 -0400)
committerBrett Cannon <brett@python.org>
Tue, 25 Sep 2012 19:23:07 +0000 (15:23 -0400)
Doc/whatsnew/3.3.rst

index c1c66428a26943983b50dd1a3a4d81db39a45a0e..ef8f15ccc59878526bb1a7db1f170c2d60b881a3 100644 (file)
@@ -1827,6 +1827,15 @@ Deprecated Python modules, functions and methods
   * :class:`abc.abstractstaticmethod` has been deprecated, use
     :class:`staticmethod` with :func:`abc.abstractmethod` instead.
 
+* :mod:`imoprtlib` package:
+
+  * :meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour of
+    :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store
+    both the modification time and size of the source file the bytecode file was
+    compiled from.
+
+
+
 
 
 Deprecated functions and types of the C API
@@ -1958,11 +1967,6 @@ Porting Python code
   :attr:`sys.path_importer_cache` where it repesents the use of implicit
   finders, but semantically it should not change anything.
 
-* :meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour of
-  :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store
-  both the modification time and size of the source file the bytecode file was
-  compiled from.
-
 * :class:`importlib.abc.Finder` no longer specifies a `find_module()` abstract
   method that must be implemented. If you were relying on subclasses to
   implement that method, make sure to check for the method's existence first.