This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Antony.Lee
Recipients Antony.Lee, docs@python
Date 2016-04-18.01:55:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460944502.67.0.955110104065.issue26792@psf.upfronthosting.co.za>
In-reply-to
Content
$ pydoc runpy

    run_module(mod_name, init_globals=None, run_name=None, alter_sys=False)
        Execute a module's code without importing it
        
        Returns the resulting top level namespace dictionary
    
    run_path(path_name, init_globals=None, run_name=None)
        Execute code located at the specified filesystem location
        
        Returns the resulting top level namespace dictionary
        
        The file path may refer directly to a Python script (i.e.
        one that could be directly executed with execfile) or else
        it may refer to a zipfile or directory containing a top
        level __main__.py script.

The meaning of the arguments should be documented (e.g. by copy-pasting the html docs).  (And some sentences are missing final dots.)
History
Date User Action Args
2016-04-18 01:55:02Antony.Leesetrecipients: + Antony.Lee, docs@python
2016-04-18 01:55:02Antony.Leesetmessageid: <1460944502.67.0.955110104065.issue26792@psf.upfronthosting.co.za>
2016-04-18 01:55:02Antony.Leelinkissue26792 messages
2016-04-18 01:55:00Antony.Leecreate