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

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

Merged
merged 5 commits into from
May 7, 2024

Commits on Oct 24, 2022

  1. pythongh-66410: Do not stringify arguments of Tkinter callback

    Callbacks registered in the tkinter module now take arguments as
    various Python objects (int, float, bytes, tuple), not just str.
    To restore the previous behavior set tkinter module global wantobject to 1
    before creating the Tk object or call the wantobject() method of the Tk object
    with argument 1.
    Calling it with argument 2 restores the current default behavior.
    serhiy-storchaka committed Oct 24, 2022
    Configuration menu
    Copy the full SHA
    d269e22 View commit details
    Browse the repository at this point in the history
  2. Fix IDLE.

    serhiy-storchaka committed Oct 24, 2022
    Configuration menu
    Copy the full SHA
    f5c6e4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5612706 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    24165e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d10ed25 View commit details
    Browse the repository at this point in the history