summaryrefslogtreecommitdiff
path: root/test/try_execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-10-25 16:45:55 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-10-25 16:45:55 -0400
commit14f0e02cb45551e95d3c03f6589813ce873f1281 (patch)
tree385df24ef910c6156b9635314f651296273b4d28 /test/try_execfile.py
parent94b231f7b6175a38e97ff2555a4553bfa0b58389 (diff)
downloadpython-coveragepy-git-14f0e02cb45551e95d3c03f6589813ce873f1281.tar.gz
Pylint is a stern taskmaster
Diffstat (limited to 'test/try_execfile.py')
-rw-r--r--test/try_execfile.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/try_execfile.py b/test/try_execfile.py
index 9a8804a0..d7ea4398 100644
--- a/test/try_execfile.py
+++ b/test/try_execfile.py
@@ -7,6 +7,7 @@ DATA = "xyzzy"
import __main__
def my_function(a):
+ """A function to force execution of module-level values."""
return "my_fn(%r)" % a
FN_VAL = my_function("fooey")