From e45ea8f7c49e3dbbadc9a7ec779703fc57adce78 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 13 Oct 2015 07:32:24 -0400 Subject: Fix explicit imports of __init__. #410 --- tests/modules/pkg1/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/modules/pkg1') 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__,)) -- cgit v1.2.1