[issue27529] Tkinter memory leak on OS X

2016-07-16 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg270570 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue27529] Tkinter memory leak on OS X

2016-07-16 Thread Ned Deily
Ned Deily added the comment: tkinter is pretty much just a thin wrapper around the Tcl/Tk C API so suspicion for behavior like this should start there. Usually, the easiest way to confirm that is to write an equivalent test in Tcl using its wish shell but, in this case, there's an even easier

[issue27529] Tkinter memory leak on OS X

2016-07-16 Thread Ned Deily
Ned Deily added the comment: tkinter is pretty much just a thin wrapper around the Tcl/Tk C API so suspicion for behavior like this start there. Usually, the easiest way to confirm that is to write an equivalent test in Tcl using its wish shell but, in this case, there's an even easier way.

[issue27529] Tkinter memory leak on OS X

2016-07-16 Thread Mirano Tuk
New submission from Mirano Tuk: There seems to be a memory leak in tkinter on OSX (Windows and Linux don't seem to be affected). Explicitly calling Tk.update() sometimes permanently allocates a multiple of 4096 bytes. Allocation happens more frequently if update calls are in close succession.