diff options
author | Brett Cannon <brett@python.org> | 2013-07-04 21:48:16 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-07-04 21:48:16 (GMT) |
commit | 82da8886cc3d8166ab8ef5a257cb04a32ddb1720 (patch) | |
tree | 081cfaea38e07f443861716a38c7bc778431153a /Doc/whatsnew | |
parent | 45091c0a0c4b759f36a2094d324e9e2022b4106b (diff) | |
download | cpython-82da8886cc3d8166ab8ef5a257cb04a32ddb1720.zip cpython-82da8886cc3d8166ab8ef5a257cb04a32ddb1720.tar.gz cpython-82da8886cc3d8166ab8ef5a257cb04a32ddb1720.tar.bz2 |
Issue #15767: Revert 3a50025f1900 for ModuleNotFoundError
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index a00bc31..2c47476 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -312,7 +312,8 @@ that may require changes to your code. using ``hasattr(module, '__path__')``. * :c:func:`PyErr_SetImportError` now sets :exc:`TypeError` when its **msg** - argument is not set. Previously only ``NULL`` was returned. + argument is not set. Previously only ``NULL`` was returned with no exception + set. * :func:`py_compile.compile` now raises :exc:`FileExistsError` if the file path it would write to is a symlink or a non-regular file. This is to act as a |