diff options
author | Brett Cannon <brett@python.org> | 2012-09-25 19:23:07 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-09-25 19:23:07 (GMT) |
commit | 288717a2ac9500759f3c82a32b907633ec8782c4 (patch) | |
tree | 5a9c1ffca42ccec94b4f99c100f8358d0c003409 /Doc/whatsnew/3.3.rst | |
parent | 3095f4724ec7ca735dfae5c9bd3925c27688a115 (diff) | |
download | cpython-288717a2ac9500759f3c82a32b907633ec8782c4.zip cpython-288717a2ac9500759f3c82a32b907633ec8782c4.tar.gz cpython-288717a2ac9500759f3c82a32b907633ec8782c4.tar.bz2 |
Shift a deprecation from the porting section to the deprecation section.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index c1c6642..ef8f15c 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -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. |