diff options
Diffstat (limited to 'Doc/library/pkgutil.rst')
-rw-r--r-- | Doc/library/pkgutil.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst index 3118ff2047..0aee4e7637 100644 --- a/Doc/library/pkgutil.rst +++ b/Doc/library/pkgutil.rst @@ -138,6 +138,10 @@ support. *prefix* is a string to output on the front of every module name on output. + .. note:: + Only works for importers which define a ``iter_modules()`` method, which + is non-standard but implemented by classes defined in this module. + .. function:: walk_packages(path=None, prefix='', onerror=None) @@ -166,6 +170,10 @@ support. # list all submodules of ctypes walk_packages(ctypes.__path__, ctypes.__name__ + '.') + .. note:: + Only works for importers which define a ``iter_modules()`` method, which + is non-standard but implemented by classes defined in this module. + .. function:: get_data(package, resource) |