Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.11] Fix typo in Lib/idlelib/idle_test/test_parenmatch.py (GH-93332) #93339

Merged
merged 1 commit into from
May 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/idlelib/idle_test/test_parenmatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ def test_paren_corner(self):
"""
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')
Expand Down