I'm new to tkinter and have traced a memory leak in a project I'm doing down to a clock in my code. It turns out the memory leak happens when updating a label, the simplest example I've got it down to in code is:
import Tkinter as tk
class Display:
def __init__(self, master):
self.master = master
self.tick()
def tick(self):
self.label = tk.Label(self.master, text = 'a')
self.label.place(x=0,y=0)
self.master.after(50, self.tick)
root = tk.Tk()
disp = Display(root)
If somebody could tell me why this leaks memory I'd be grateful.
Thanks, Matt