diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-09-25 19:34:54 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-09-25 19:34:54 (GMT) |
commit | 8286951f57ad596f248bc9ec765884e1536a87ee (patch) | |
tree | fda58b514779e619959ff10c6954d0638eb13eae /Doc/whatsnew | |
parent | 49379c05cd11ae075acf6e84824594bad785ef32 (diff) | |
parent | 847bb76f18b8b0059bcd3ee8cb428069ca7932ec (diff) | |
download | cpython-8286951f57ad596f248bc9ec765884e1536a87ee.zip cpython-8286951f57ad596f248bc9ec765884e1536a87ee.tar.gz cpython-8286951f57ad596f248bc9ec765884e1536a87ee.tar.bz2 |
merge 3.3
Diffstat (limited to 'Doc/whatsnew')
-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 c0e0e13..d4b9f89 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1832,6 +1832,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 @@ -1963,11 +1972,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. |