From: Brett Cannon Date: Mon, 19 Jan 2009 07:07:58 +0000 (+0000) Subject: Remove a debugging print statement that accidentally got left in. X-Git-Tag: v3.1a1~467 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d994864d54ffd2f607af3a9eecfbadd75502efd3;p=python Remove a debugging print statement that accidentally got left in. --- diff --git a/Lib/importlib/test/__init__.py b/Lib/importlib/test/__init__.py index f130d9f319..f9dd57e7ec 100644 --- a/Lib/importlib/test/__init__.py +++ b/Lib/importlib/test/__init__.py @@ -17,7 +17,6 @@ def test_suite(package=__package__, directory=os.path.dirname(__file__)): suite.addTest(module_tests) elif os.path.isdir(path): package_name = "{0}.{1}".format(package, name) - print(package_name) __import__(package_name, level=0) package_tests = getattr(sys.modules[package_name], 'test_suite')() suite.addTest(package_tests)