I run the following code under Mac OS X 10.6.8, wxPython 2.9.3.1 and 64 Bit Python v2.7.2:
import wx
class MyFrame(wx.Frame):
def __init__(self):
super(MyFrame,self).__init__(None, title="Frame", size=(100, 100))
self.field = wx.TextCtrl(self, -1, "Text", (30, 7))
def startLoop(self):
counter = 0
while True:
counter += 1
self.field.SetValue(str(counter))
wx.Yield()
class Main(wx.App):
def __init__(self):
self.counter = 0
super(Main,self).__init__(0)
def OnInit(self):
self.frame = MyFrame()
self.frame.Show()
self.frame.startLoop()
self.MainLoop()
return True
Main()
It just uses up more an more memory. Am I doing something horribly wrong or is wxPython so badly broken? And most importantly is there a workaround because I already programmed a huge GUI based on wxPython.
Thank you so much!
wx.StaticText leaks exactly the same in the above code.