summaryrefslogtreecommitdiff
path: root/tests/modules
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-10-13 07:32:24 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-10-13 07:32:24 -0400
commit086aec37d70f1a01c0a40ffb55f5f16f98b214f7 (patch)
tree576b9baa148cbc4c47d23ce4195efa9946a1f5ce /tests/modules
parente5df01cadf622629ba8d418e96f8b14b468a551a (diff)
downloadpython-coveragepy-086aec37d70f1a01c0a40ffb55f5f16f98b214f7.tar.gz
Fix explicit imports of __init__. #410
Diffstat (limited to 'tests/modules')
-rw-r--r--tests/modules/pkg1/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/modules/pkg1/__init__.py b/tests/modules/pkg1/__init__.py
index 2dfeb9c..e2e4af5 100644
--- a/tests/modules/pkg1/__init__.py
+++ b/tests/modules/pkg1/__init__.py
@@ -1,3 +1,4 @@
# This __init__.py has a module-level docstring, which is counted as a
# statement.
"""A simple package for testing with."""
+print("pkg1.__init__: %s" % (__name__,))