I am getting a recursive error with the following script.  When using plot 
instead of semilogy, I get the desired result.  Does anyone know of a 
workaround?


from pylab import *

class Hover(object):
    def __call__(self, ev):
        print ev.canvas.figure.hitlist(ev)

fig = plt.figure()
ax=fig.add_subplot(111)
ax.semilogy([1,5,10])
hover = Hover()
fig.canvas.mpl_connect('motion_notify_event',hover)
show()


      
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to