Hello,
I'm relatively new to wxPython, I'm using IDLE 2.6, wxWidgets 2.8. If
I start an app it works fine, but when i close it, it closes the IDLE
windows too, and an other problem is that if i try to run an whit an
error it closes the IDLE and i cant see the error message. Have anyone
seen this before, if so how can I fix it?
uborka8
IDLE is written in Tkinter, so when you run wx programs in it, the two GUI toolkits can get into a fight. I used to use IDLE all the time, but it’s not really a good idea to use it for wx development for the reason you mentioned. You can write your code in it, no problem. But you’d be better off running the code via the command line or with a different utility, like PyDev, Wingware, or the many other editors our there.
- Mike