Good question Gael,<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im"><br>
</div>So, ... I am dumb, and I haven't been following things well enough (not<br>
enough time). Concretely, what do I need to do to be able to launch<br>
IPython, and pop up a wx dialog not blocking IPython with the new<br>
technology?<br>
</blockquote><div><br>If you have a patched version of wx (that Robin and I are working on) you just do the following (from either ipython or python!):<br><br>>>> import wx<br>>>> app = wx.IApp(clearSigInt=False)  # for interactive app<br>
then you are off to the races (you don't even need to start the mainloop)<br><br>With current versions of mpl, you can do:<br><br>>>> import wx<br>>>> app = wx.IApp(clearSigInt=False)<br>>>> from matplotlib import pyplot as plt<br>
>>> plt.interactive(True)<br>the everything just works...<br><br>Obviously, the creation of the IApp object should be put into the GUI toolkit initialization code in mpl/mayavi/etc.  I will work with Robin to get a version of wx posted that has the patched applied so people can begin to test this.<br>
</div></div><br>Cheers,<br><br>Brian<br><br>