Closed sspickle closed 11 years ago
If you go to a command line in Terminal and type
python
import visual ^D
you get a crash. If you type
import visual import wx wx.Exit() ^D
all is well. Apparently wx.Exit() does critical cleanup that doesn't get done if the shell just exits. I'm experimenting with adding an atexit handler (see atexit branch).
With the new atexit strategy... this bug is squashed.
-steve
If you go to a command line in Terminal and type
python
you get a crash. If you type
python
all is well. Apparently wx.Exit() does critical cleanup that doesn't get done if the shell just exits. I'm experimenting with adding an atexit handler (see atexit branch).