James Matthews <nytrokiss <at> gmail.com> writes:
>
>
> A common issue!The OnInit method calls the super classes __init__ method!
>
Huh? Here's my OnInit() method:
def OnInit(self):
frame = wx.Frame(None)
frame.Show()
return True
I don't see a call to the super class's __init__ method anywhere.