when I try make a picture with pylab
import pylab
pylab.plot([0,1,2,3],[10,50,30,40])
pylab.savefig('graph.png')
in a wx application, no returned the terminal control.
|
feedback
|
|
I imagine that you are calling the wx main-loop in your main (only?) thread. However can you clarify the context of your code snippet? How do you make it into a "wx application" and why do you want terminal control? For example, do you want to see your figure on screen while also entering stuff at the terminal. Or do you want to just save it, without it showing on screen? Anyway, the code snippet you give runs just fine for me, but if I do
Then if I run your code ...
This is because pylab.plot() calls the main loop of a GUI (gtk in my case, I expect wx will do the same). | |||
|
feedback
|