8000 gh-66410: Do not stringify arguments of Tkinter callback by serhiy-storchaka · Pull Request #98592 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-66410: Do not stringify arguments of Tkinter callback #98592

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 5 commits into from
May 7, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix IDLE.
  • Loading branch information
serhiy-storchaka committed Oct 24, 2022
commit f5c6e4aa5fb8e36a35ec900bdc819b0a1013c0e0
2 changes: 1 addition & 1 deletion Lib/idlelib/redirector.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def dispatch(self, operation, *args):
to *args to accomplish that. For an example, see colorizer.py.

'''
m = self._operations.get(operation)
m = self._operations.get(str(operation))
try:
if m:
return m(*args)
Expand Down
0