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/library/exceptions.rst | |
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/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index 377d98a..933667c 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -185,8 +185,7 @@ The following exceptions are the exceptions that are usually raised. A subclass of :exc:`ImportError` which is raised by :keyword:`import` when a module could not be located. This includes ``from ... import`` statements as the specific attribute being requested cannot be known a priori to be a module - or some other type of object. It is also raised when ``None`` is found in - :data:`sys.modules`. + or some other type of object. .. versionadded:: 3.4 |