diff options
author | Brett Cannon <brett@python.org> | 2016-12-10 22:15:22 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-12-10 22:15:22 (GMT) |
commit | 274c01f0c94793752893be5346dd4c6a69c42913 (patch) | |
tree | 44bbc72d43c6fe2d0bbcc24fc0fe2192b2ac2de7 /Doc | |
parent | 5ca2b10213b4a5727dc99521c1b07ba75f3c321b (diff) | |
parent | 071fbcb63b35b049bc6b6c317f9a31d02687e3de (diff) | |
download | cpython-274c01f0c94793752893be5346dd4c6a69c42913.zip cpython-274c01f0c94793752893be5346dd4c6a69c42913.tar.gz cpython-274c01f0c94793752893be5346dd4c6a69c42913.tar.bz2 |
Merge for issue #28424
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/pkgutil.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst index 90d69e4..fba0ea6 100644 --- a/Doc/library/pkgutil.rst +++ b/Doc/library/pkgutil.rst @@ -224,4 +224,6 @@ support. If the package cannot be located or loaded, or it uses a :term:`loader` which does not support :meth:`get_data <importlib.abc.ResourceLoader.get_data>`, - then ``None`` is returned. + then ``None`` is returned. In particular, the :term:`loader` for + :term:`namespace packages <namespace package>` does not support + :meth:`get_data <importlib.abc.ResourceLoader.get_data>`. |