Kaydet (Commit) d994864d authored tarafından Brett Cannon's avatar Brett Cannon

Remove a debugging print statement that accidentally got left in.

üst b4a1b8c5
...@@ -17,7 +17,6 @@ def test_suite(package=__package__, directory=os.path.dirname(__file__)): ...@@ -17,7 +17,6 @@ def test_suite(package=__package__, directory=os.path.dirname(__file__)):
suite.addTest(module_tests) suite.addTest(module_tests)
elif os.path.isdir(path): elif os.path.isdir(path):
package_name = "{0}.{1}".format(package, name) package_name = "{0}.{1}".format(package, name)
print(package_name)
__import__(package_name, level=0) __import__(package_name, level=0)
package_tests = getattr(sys.modules[package_name], 'test_suite')() package_tests = getattr(sys.modules[package_name], 'test_suite')()
suite.addTest(package_tests) suite.addTest(package_tests)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment