This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zaza hohonini
Recipients zaza hohonini
Date 2019-11-22.21:16:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1574457380.17.0.828287003226.issue38898@roundup.psfhosted.org>
In-reply-to
Content
Hello,

I am running python 3.8.0 and found a problem where multiple checkbuttons get switched when I click one. From observing it looks like each first check button in a frame is linked. And each second, etc. I ran the some program in python 2.7.17 and it works as expected.

Basic program that show the problem:

import tkinter as tk

class Hello(tk.Frame):                     
    def __init__(self, parent=None):
        tk.Frame.__init__(self, parent)
        check = tk.Checkbutton(self, text='Checkbutton')
        check.pack()

root = tk.Tk()
Hello(root).pack()
Hello(root).pack()
root.mainloop()
History
Date User Action Args
2019-11-22 21:16:20zaza hohoninisetrecipients: + zaza hohonini
2019-11-22 21:16:20zaza hohoninisetmessageid: <1574457380.17.0.828287003226.issue38898@roundup.psfhosted.org>
2019-11-22 21:16:20zaza hohoninilinkissue38898 messages
2019-11-22 21:16:19zaza hohoninicreate