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
commit9f8fc4e8f9bf1da99728c87ce3118168085b76a1 (patch)
tree0b92ae6686805b5879844a68c03b115b7f438c77 /coverage/execfile.py
parentca1b25a3089a7db3d5a08c2a317a2f689f2ff34f (diff)
downloadpython-coveragepy-9f8fc4e8f9bf1da99728c87ce3118168085b76a1.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 ae4c703..c957949 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.