summaryrefslogtreecommitdiff
path: root/coverage/execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-12-12 15:36:29 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-12-12 15:36:29 -0500
commit15f549b8486bdf41b11211592c94bcf46f1d7989 (patch)
tree48a38d5a43eb87b739ffcfecfea60acc72194e64 /coverage/execfile.py
parent59889252937e31ab4c3b734922c63dd529e26e03 (diff)
downloadpython-coveragepy-15f549b8486bdf41b11211592c94bcf46f1d7989.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.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