8000 gh-71592: Add ability to trace Tcl commands executed by Tkinter by serhiy-storchaka · Pull Request #118291 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-71592: Add ability to trace Tcl commands executed by Tkinter #118291

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 6, 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
Set _debug = False.
  • Loading branch information
serhiy-storchaka committed May 6, 2024
commit 26cf1602f941dee616eb92c108f8bc23ace6dc19
2 changes: 1 addition & 1 deletion Lib/tkinter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import re

wantobjects = 1
_debug = 1+False # set to True to print executed Tcl/Tk commands
_debug = False # set to True to print executed Tcl/Tk commands

TkVersion = float(_tkinter.TK_VERSION)
TclVersion = float(_tkinter.TCL_VERSION)
Expand Down
0