summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2022-05-30 01:41:59 (GMT)
committerGitHub <noreply@github.com>2022-05-30 01:41:59 (GMT)
commit4f195f9db168bfe3360607eb45ba8d9ac98506ec (patch)
tree560395b289f5978cc3281cf8c755abafa550a8c0 /Lib
parent61e008a4ab0b444342f9186efb57207d6fb05092 (diff)
downloadcpython-4f195f9db168bfe3360607eb45ba8d9ac98506ec.zip
cpython-4f195f9db168bfe3360607eb45ba8d9ac98506ec.tar.gz
cpython-4f195f9db168bfe3360607eb45ba8d9ac98506ec.tar.bz2
Fix typo in Lib/idlelib/idle_test/test_parenmatch.py (GH-93332)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/idle_test/test_parenmatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_parenmatch.py b/Lib/idlelib/idle_test/test_parenmatch.py
index 4a41d84..2e10d7c 100644
--- a/Lib/idlelib/idle_test/test_parenmatch.py
+++ b/Lib/idlelib/idle_test/test_parenmatch.py
@@ -83,12 +83,12 @@ class ParenMatchTest(unittest.TestCase):
"""
Test corner cases in flash_paren_event and paren_closed_event.
- These cases force conditional expression and alternate paths.
+ Force execution of conditional expressions and alternate paths.
"""
text = self.text
pm = self.get_parenmatch()
- text.insert('insert', '# this is a commen)')
+ text.insert('insert', '# Comment.)')
pm.paren_closed_event('event')
text.insert('insert', '\ndef')