summaryrefslogtreecommitdiff
path: root/test/modules/pkg2
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-06-27 18:19:13 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-06-27 18:19:13 -0400
commit555ecf22280e6849e36f680494157465c6c847e2 (patch)
tree9ec2a21ad49b1d370dd393777d7639f86f1afaf8 /test/modules/pkg2
parent4e6f9294d025b0b3102f27a217f6c6dac5d110a4 (diff)
downloadpython-coveragepy-git-555ecf22280e6849e36f680494157465c6c847e2.tar.gz
Empty python files (like __init__.py) are shown as having zero statements, not one. Fixes #1.
Diffstat (limited to 'test/modules/pkg2')
-rw-r--r--test/modules/pkg2/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/modules/pkg2/__init__.py b/test/modules/pkg2/__init__.py
index e69de29b..090efbf5 100644
--- a/test/modules/pkg2/__init__.py
+++ b/test/modules/pkg2/__init__.py
@@ -0,0 +1,2 @@
+# This is an __init__.py file, with no executable statements in it.
+# This comment shouldn't confuse the parser.