Skip to content

Commit b0f0dc8

Browse files
authored
Remove unnecessary blank lines in test_shutil.py
1 parent 958ec29 commit b0f0dc8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Lib/test/test_shutil.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3519,20 +3519,15 @@ def test_module_all_attribute(self):
35193519
self.assertEqual(set(shutil.__all__), set(target_api))
35203520
with self.assertWarns(DeprecationWarning):
35213521
from shutil import ExecError # noqa: F401
3522-
3523-
35243522
if __name__ == '__main__':
35253523
unittest.main()
3526-
35273524
class TestShutilZipTraversal(unittest.TestCase):
35283525
def setUp(self):
35293526
self.tmp_dir = tempfile.mkdtemp()
35303527
self.extract_dir = os.path.join(self.tmp_dir, "extract")
35313528
os.mkdir(self.extract_dir)
3532-
35333529
def tearDown(self):
35343530
shutil.rmtree(self.tmp_dir)
3535-
35363531
@unittest.skipUnless(sys.platform == 'win32', 'Windows-specific traversal test')
35373532
@support.requires_zlib()
35383533
def test_unpack_zipfile_traversal_windows_drive(self):

0 commit comments

Comments
 (0)