RE: Do any debuggers support "edit and continue?"

2010-05-12 Thread Sandy Sandy
maybe ipython? http://showmedo.com/videos/video?name=120&fromSeriesID=100 > From: zapwiredashgro...@yahoo.com > Subject: Do any debuggers support "edit and continue?" > Date: Wed, 12 May 2010 10:42:31 -0700 > To: python-list@python.org > > Just curious... in Microsoft's Visual Studio (a

RE: Do any debuggers support "edit and continue?"

2010-05-12 Thread Sandy Sandy
good question I also looking for debugging tools like Matlab in Python do you know how to stop in breakpoint investigate the variables by using graphics in figures and continue the mutter is: during debugging the debug processes stacks when fig is created for example, in code import random

graphs in Python during debugging

2010-05-11 Thread Sandy Sandy
Hi friends Can you help pls to find how to plot graphs in Python during debugging without destroying figures to continue to debug the mutter is: during debugging the debug processes stacks when fig is created for example, in code import random import matplotlib.pyplot as plt from pylab

plot debugging problem

2010-05-11 Thread Sandy Sandy
Hi friends pls help with debugging problem the mutter is: during debugging the debug processes stacks when fig is created for example, in code import random import matplotlib.pyplot as plt from pylab import * x= 23; y = 11; print(23456) plt.plot(range(10)) plot([1,2,3])