]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
What's new entry for issue #17093
authorBrett Cannon <brett@python.org>
Tue, 9 Apr 2013 21:03:10 +0000 (17:03 -0400)
committerBrett Cannon <brett@python.org>
Tue, 9 Apr 2013 21:03:10 +0000 (17:03 -0400)
Doc/whatsnew/3.4.rst

index 26dc2faffc2018eb7d12d3febe17a721faf0a387..a2701a27765f38edc21890905f4bd1e849908093 100644 (file)
@@ -209,4 +209,8 @@ Porting to Python 3.4
 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.