diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-12 15:36:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-12 15:36:29 -0500 |
commit | 1b6700a8577a7658bb708faf1defd262969a06fc (patch) | |
tree | b8c8ac59d506bdb57436069b5c3e6663ae455d91 /coverage/execfile.py | |
parent | 6055667e8090fc09e55b96ae49d5ac6a37706ede (diff) | |
download | python-coveragepy-git-1b6700a8577a7658bb708faf1defd262969a06fc.tar.gz |
For some reason, lowercase 'python' suddenly struck me as odd-looking. Fix them.
Diffstat (limited to 'coverage/execfile.py')
-rw-r--r-- | coverage/execfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/execfile.py b/coverage/execfile.py index f08b7589..299fea9b 100644 --- a/coverage/execfile.py +++ b/coverage/execfile.py @@ -89,7 +89,7 @@ else: def run_python_module(modulename, args): - """Run a python module, as though with ``python -m name args...``. + """Run a Python module, as though with ``python -m name args...``. `modulename` is the name of the module, possibly a dot-separated name. `args` is the argument array to present as sys.argv, including the first @@ -104,7 +104,7 @@ def run_python_module(modulename, args): def run_python_file(filename, args, package=None, modulename=None): - """Run a python file as if it were the main program on the command line. + """Run a Python file as if it were the main program on the command line. `filename` is the path to the file to execute, it need not be a .py file. `args` is the argument array to present as sys.argv, including the first |