-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
gh-126899: Add **kw
to tkinter.Misc.after
and tkinter.Misc.after_idle
#126900
base: main
Are you sure you want to change the base?
Conversation
For this to work you need to make func and ms positional only, which is backwards incompatible |
Is making I've found something similar elsewhere in Line 444 in 2313f84
and Line 547 in 2313f84
|
It is not necessary to make other parameters positional only, but this can be considered in future, together with other methods that have var-keyword parameter. In general, I do not see objections against this change. It does not also look that other Tkinter methods need similar change. But please add tests and a What's New entry. |
@serhiy-storchaka PTAL, thanks! |
**kw
totkinter.Misc.after
andtkinter.Misc.after_idle
#126899