diff options
Diffstat (limited to 'Doc/library/runpy.rst')
| -rw-r--r-- | Doc/library/runpy.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/runpy.rst b/Doc/library/runpy.rst index 7293f15..78d0143 100644 --- a/Doc/library/runpy.rst +++ b/Doc/library/runpy.rst @@ -36,7 +36,8 @@ The :mod:`runpy` module provides two functions: import mechanism (refer to :pep:`302` for details) and then executed in a fresh module namespace. - If the supplied module name refers to a package rather than a normal + The *mod_name* argument should be an absolute module name. + If the module name refers to a package rather than a normal module, then that package is imported and the ``__main__`` submodule within that package is then executed and the resulting module globals dictionary returned. |
