8000 bpo-40460: Fix typo in idlelib/zzdummy.py by vstinner · Pull Request #20093 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-40460: Fix typo in idlelib/zzdummy.py #20093

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

Merged
merged 1 commit into from
May 14, 2020
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
bpo-40460: Fix typo in idlelib/zzdummy.py
Replace ztest with ztext.
  • Loading branch information
vstinner committed May 14, 2020
commit 9ff9e2fb04681026f42cd3b26e0e894a68491897
2 changes: 1 addition & 1 deletion Lib/idlelib/zzdummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def z_in_event(self, event):
text = self.text
text.undo_block_start()
for line in range(1, text.index('end')):
text.insert('%d.0', ztest)
text.insert('%d.0', ztext)
text.undo_block_stop()
return "break"

Expand Down
0