diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-01-19 07:07:58 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-01-19 07:07:58 (GMT) |
commit | d994864d54ffd2f607af3a9eecfbadd75502efd3 (patch) | |
tree | 2ada5f20250d70889992ee95d9027af8528b85aa | |
parent | b4a1b8c5419073b202f8481d38364390f6926d3a (diff) | |
download | cpython-d994864d54ffd2f607af3a9eecfbadd75502efd3.zip cpython-d994864d54ffd2f607af3a9eecfbadd75502efd3.tar.gz cpython-d994864d54ffd2f607af3a9eecfbadd75502efd3.tar.bz2 |
Remove a debugging print statement that accidentally got left in.
-rw-r--r-- | Lib/importlib/test/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/importlib/test/__init__.py b/Lib/importlib/test/__init__.py index f130d9f..f9dd57e 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) |