summaryrefslogtreecommitdiff
path: root/coverage/execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-04-19 16:24:10 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-04-19 16:24:10 -0400
commit28d93fedc34059dfc09db9912841ae7b13f508a9 (patch)
tree549df5dccf849ad3d161e9d9af04bf941d7bfa10 /coverage/execfile.py
parent4d45dc8c234eee1b4bd6da9eac409d588eba9455 (diff)
downloadpython-coveragepy-git-28d93fedc34059dfc09db9912841ae7b13f508a9.tar.gz
Line length < 80.
Diffstat (limited to 'coverage/execfile.py')
-rw-r--r--coverage/execfile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/execfile.py b/coverage/execfile.py
index ae4c7036..c957949e 100644
--- a/coverage/execfile.py
+++ b/coverage/execfile.py
@@ -10,9 +10,9 @@ def run_python_file(filename, args):
`args` is the argument array to present as sys.argv.
"""
- # Most code that does this does it in a way that leaves __main__ or __file__
- # with the wrong values. Importing the code as __main__ gets all of this
- # right automatically.
+ # Most code that does this does it in a way that leaves __main__ or
+ # __file__ with the wrong values. Importing the code as __main__ gets all
+ # of this right automatically.
#
# One difference from python.exe: if I run foo.py from the command line, it
# always uses foo.py. With this code, it might find foo.pyc instead.