Re: [Matplotlib-users] Does matplotlib.animation module use weakrefs?

2012-03-01 Thread Ryan May
On Feb 29, 2012, at 20:00, Bernhard Heijstek wrote: > Hello, > > I'm trying to run a rudimentary animation code > (http://pastebin.com/ZNRhDmPR). When I don't explicitly give a name to the > FuncAnimation object, the code doesn't work. I mean, just dropping in: > anim.FuncAnimation(fig, updat

[Matplotlib-users] Does matplotlib.animation module use weakrefs?

2012-03-01 Thread Bernhard Heijstek
Hello, I'm trying to run a rudimentary animation code (http://pastebin.com/ZNRhDmPR). When I don't explicitly give a name to the FuncAnimation object, the code doesn't work. I mean, just dropping in: anim.FuncAnimation(fig, update_figure, np.arange(0, 2*np.pi, 0.1), interval=50) instead of, li