summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-04-09 21:03:10 (GMT)
committerBrett Cannon <brett@python.org>2013-04-09 21:03:10 (GMT)
commit777622b6ca8ebf1ab3d8dbbb65fb7d0799b78a1d (patch)
treec3b5afdeb5089935172409467ca3cd18112645b6 /Doc/whatsnew
parent100883f0cbccb936b928ddaa962c967296455af3 (diff)
downloadcpython-777622b6ca8ebf1ab3d8dbbb65fb7d0799b78a1d.zip
cpython-777622b6ca8ebf1ab3d8dbbb65fb7d0799b78a1d.tar.gz
cpython-777622b6ca8ebf1ab3d8dbbb65fb7d0799b78a1d.tar.bz2
What's new entry for issue #17093
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.4.rst6
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 26dc2fa..a2701a2 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -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.