From 1b6700a8577a7658bb708faf1defd262969a06fc Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 12 Dec 2014 15:36:29 -0500 Subject: For some reason, lowercase 'python' suddenly struck me as odd-looking. Fix them. --- coverage/execfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coverage/execfile.py') 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 -- cgit v1.2.1