diff options
Diffstat (limited to 'Doc/library/modulefinder.rst')
-rw-r--r-- | Doc/library/modulefinder.rst | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Doc/library/modulefinder.rst b/Doc/library/modulefinder.rst index d39f412..7a289f4 100644 --- a/Doc/library/modulefinder.rst +++ b/Doc/library/modulefinder.rst @@ -38,19 +38,21 @@ report of the imported modules will be printed. be replaced in module paths. -.. method:: ModuleFinder.report() + .. method:: report() - Print a report to standard output that lists the modules imported by the script - and their paths, as well as modules that are missing or seem to be missing. + Print a report to standard output that lists the modules imported by the + script and their paths, as well as modules that are missing or seem to be + missing. + .. method:: run_script(pathname) -.. method:: ModuleFinder.run_script(pathname) + Analyze the contents of the *pathname* file, which must contain Python + code. - Analyze the contents of the *pathname* file, which must contain Python code. + .. attribute:: modules -.. attribute:: ModuleFinder.modules - - A dictionary mapping module names to modules. See :ref:`modulefinder-example` + A dictionary mapping module names to modules. See + :ref:`modulefinder-example` .. _modulefinder-example: |