[Python-checkins] cpython: What's new entry for issue #17093

brett.cannon python-checkins at python.org
Tue Apr 9 23:03:52 CEST 2013


http://hg.python.org/cpython/rev/7e91dc7221d5
changeset:   83226:7e91dc7221d5
user:        Brett Cannon <brett at python.org>
date:        Tue Apr 09 17:03:10 2013 -0400
summary:
  What's new entry for issue #17093

files:
  Doc/whatsnew/3.4.rst |  6 +++++-
  1 files changed, 5 insertions(+), 1 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
@@ -209,4 +209,8 @@
 This section lists previously described changes and other bugfixes
 that may require changes to your code.
 
-* Nothing yet.
+* The ABCs defined in :mod:`importlib.abc` now either raise the appropriate
+  exception or return a default value instead of raising
+  :exc:`NotImplementedError` blindly. This will only affect code calling
+  :func:`super` and falling through all the way to the ABCs. For compatibility,
+  catch both :exc:`NotImplementedError` or the appropriate exception as needed.

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


More information about the Python-checkins mailing list