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 | e45ea8f7c49e3dbbadc9a7ec779703fc57adce78 (patch) | |
tree | 4008f45a1fe7d4dddfea40e679b82215bf796a84 /tests/modules | |
parent | 51b98c60a34531113827aa6e8cf79cd70711f980 (diff) | |
download | python-coveragepy-git-e45ea8f7c49e3dbbadc9a7ec779703fc57adce78.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 2dfeb9c1..e2e4af5f 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__,)) |