Skip to content

Commit 66e0495

Browse files
committed
remove comments
1 parent da37468 commit 66e0495

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Lib/idlelib/idle_test/test_iomenu.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def test_reload_with_file(self):
8282
io = self.io
8383
text = io.editwin.text
8484

85-
# Create a temporary file
8685
with tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.py') as f:
8786
f.write("# Original content\n")
8887
temp_filename = f.name
@@ -107,7 +106,6 @@ def test_reload_with_unsaved_changes_cancel(self):
107106
io = self.io
108107
text = io.editwin.text
109108

110-
# Create a temporary file
111109
with tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.py') as f:
112110
f.write("# Original content\n")
113111
temp_filename = f.name
@@ -138,7 +136,6 @@ def test_reload_with_unsaved_changes_confirm(self):
138136
io = self.io
139137
text = io.editwin.text
140138

141-
# Create a temporary file
142139
with tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.py') as f:
143140
f.write("# Original content\n")
144141
temp_filename = f.name

0 commit comments

Comments
 (0)