From: John H. <jdh...@ac...> - 2005-02-01 02:46:52
|
>>>>> "Fernando" == Fernando Perez <Fer...@co...> writes: Fernando> planck[pylab]> cat tkbug.py from matplotlib import pylab Fernando> pylab.plot(range(10)) pylab.show() Fernando> # Now I try to run this with plain python, no ipython in Fernando> sight: This is the result of adding if rcParams['tk.pythoninspect']: os.environ['PYTHONINSPECT'] = '1' to tkagg. Comment out the pythoninspect line (or set the rc param accordingly) and see if makes a difference. The pythoninspect thing appears to be required to make idle work in interactive mode, though it was introduced for other reasons I won't go into now. The rc param is only in CVS -- you may just want to comment out the whole bit and see if it helps. Let me know... JDH |