From 5901d92739c6e53668e3924eaff38e2e9eb95162 Mon Sep 17 00:00:00 2001 From: Kirill Podoprigora Date: Sun, 21 Jul 2024 22:48:39 +0300 Subject: [PATCH] gh-122096: Remove accidentally left debugging prints (#122097) --- Lib/test/test_pathlib/test_pathlib.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_pathlib/test_pathlib.py b/Lib/test/test_pathlib/test_pathlib.py index 5293b5c84cd..7160e764dfb 100644 --- a/Lib/test/test_pathlib/test_pathlib.py +++ b/Lib/test/test_pathlib/test_pathlib.py @@ -904,7 +904,6 @@ class PathTest(test_pathlib_abc.DummyPathTest, PurePathTest): errors = [] tmp.rmtree(on_error=errors.append) # Test whether onerror has actually been called. - print(errors) self.assertEqual(len(errors), 3) finally: tmp.chmod(old_dir_mode) @@ -1006,7 +1005,6 @@ class PathTest(test_pathlib_abc.DummyPathTest, PurePathTest): with swap_attr(os, 'close', close) as orig_close: dir1.rmtree(on_error=errors.append) - print(errors) self.assertEqual(len(errors), 2) self.assertEqual(errors[0].filename, str(dir2)) self.assertEqual(errors[1].filename, str(dir1))