summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-03-28 19:14:26 (GMT)
committerGitHub <noreply@github.com>2018-03-28 19:14:26 (GMT)
commitbac2d5ba30339298db7d4caa9c8cd31d807cf081 (patch)
treed08e103d7d7f2ef41b56c2e7d8c360663bf7780e /Lib/idlelib
parentaa50bf08e64f49d57917ab0b1aadf4308a3168a6 (diff)
downloadcpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.zip
cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.gz
cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.bz2
Fix duplicating words words. (GH-6296)
Most of them have been added in 3.7.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/idle_test/test_editmenu.py2
-rw-r--r--Lib/idlelib/idle_test/test_text.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_editmenu.py b/Lib/idlelib/idle_test/test_editmenu.py
index 17eb25c..1747847 100644
--- a/Lib/idlelib/idle_test/test_editmenu.py
+++ b/Lib/idlelib/idle_test/test_editmenu.py
@@ -1,6 +1,6 @@
'''Test (selected) IDLE Edit menu items.
-Edit modules have their own test files files
+Edit modules have their own test files
'''
from test.support import requires
requires('gui')
diff --git a/Lib/idlelib/idle_test/test_text.py b/Lib/idlelib/idle_test/test_text.py
index a5ba7bb..0f31179 100644
--- a/Lib/idlelib/idle_test/test_text.py
+++ b/Lib/idlelib/idle_test/test_text.py
@@ -9,7 +9,7 @@ from _tkinter import TclError
class TextTest(object):
"Define items common to both sets of tests."
- hw = 'hello\nworld' # Several tests insert this after after initialization.
+ hw = 'hello\nworld' # Several tests insert this after initialization.
hwn = hw+'\n' # \n present at initialization, before insert
# setUpClass defines cls.Text and maybe cls.root.