diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-13 07:32:24 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-13 07:32:24 -0400 |
| commit | 086aec37d70f1a01c0a40ffb55f5f16f98b214f7 (patch) | |
| tree | 576b9baa148cbc4c47d23ce4195efa9946a1f5ce /tests/modules | |
| parent | e5df01cadf622629ba8d418e96f8b14b468a551a (diff) | |
| download | python-coveragepy-086aec37d70f1a01c0a40ffb55f5f16f98b214f7.tar.gz | |
Fix explicit imports of __init__. #410
Diffstat (limited to 'tests/modules')
| -rw-r--r-- | tests/modules/pkg1/__init__.py | 1 |
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__,)) |
