summaryrefslogtreecommitdiff
path: root/coverage/execfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/execfile.py')
-rw-r--r--coverage/execfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/execfile.py b/coverage/execfile.py
index f08b758..299fea9 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