summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test/test_replace.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2017-11-06 01:30:06 (GMT)
committerGitHub <noreply@github.com>2017-11-06 01:30:06 (GMT)
commit646e4c8fcc55fc8c4befb9d8a071d31f34fbf562 (patch)
treec69207efcf875e1bfc140a3ff645f23aff889e6f /Lib/idlelib/idle_test/test_replace.py
parentf4443562345130c991fded3dc3b02b94aee0f362 (diff)
downloadcpython-646e4c8fcc55fc8c4befb9d8a071d31f34fbf562.zip
cpython-646e4c8fcc55fc8c4befb9d8a071d31f34fbf562.tar.gz
cpython-646e4c8fcc55fc8c4befb9d8a071d31f34fbf562.tar.bz2
[3.6] Fix miscellaneous typos in idlelib (GH-4275) (#4291)
Manual partial backport of patch that fixed nearly 50 other files.
Diffstat (limited to 'Lib/idlelib/idle_test/test_replace.py')
-rw-r--r--Lib/idlelib/idle_test/test_replace.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_replace.py b/Lib/idlelib/idle_test/test_replace.py
index 2ecbd34..df76dec 100644
--- a/Lib/idlelib/idle_test/test_replace.py
+++ b/Lib/idlelib/idle_test/test_replace.py
@@ -74,14 +74,14 @@ class ReplaceDialogTest(unittest.TestCase):
replace()
equal(text.get('1.8', '1.12'), 'asdf')
- # dont "match word" case
+ # don't "match word" case
text.mark_set('insert', '1.0')
pv.set('is')
rv.set('hello')
replace()
equal(text.get('1.2', '1.7'), 'hello')
- # dont "match case" case
+ # don't "match case" case
pv.set('string')
rv.set('world')
replace()