From: Michael H. <mh...@al...> - 2010-05-18 04:28:14
|
Sandy Ydnas wrote: > I am staring now to use Gnuplot under Python, since Matplotlib has > problem - it gets stuck during debugging after show(). > > pls help understand is Gnuplot debugging friendly, it means is it > possible to continue to Debug when figure is created?? I personally don't use pdb, but I don't know of any reason why it should be difficult to debug code that uses Gnuplot.py. The only thing that occurs to me is that the use of FIFOs to communicate data to gnuplot currently requires the use of additional threads that write the data to the FIFO, and debugging multithreaded code might be tricky. But the use of FIFOs is optional; you could configure Gnuplot.py to use temporary files or inline data instead. Please tell us what you find out! Michael |