Re: [Matplotlib-users] bug in matplotlib.text.Text

2011-07-27 Thread Andrea Pierleoni
Great. Thank you. I will check the master branch before reporting next time. Andrea > On Wed, Jul 27, 2011 at 10:07 AM, Andrea Pierleoni > wrote: > >> Hi all, >> >> I found that a matplotlib.text.Text istance reports wrong coordinates >> when >> converted to str >> I'm using version 1.0.1 >> >> t

Re: [Matplotlib-users] bug in matplotlib.text.Text

2011-07-27 Thread Benjamin Root
On Wed, Jul 27, 2011 at 10:07 AM, Andrea Pierleoni wrote: > Hi all, > > I found that a matplotlib.text.Text istance reports wrong coordinates when > converted to str > I'm using version 1.0.1 > > this is the code in Text class: > > def __str__(self): >return "Text(%g,%g,%s)"%(self._y,self.

[Matplotlib-users] bug in matplotlib.text.Text

2011-07-27 Thread Andrea Pierleoni
Hi all, I found that a matplotlib.text.Text istance reports wrong coordinates when converted to str I'm using version 1.0.1 this is the code in Text class: def __str__(self): return "Text(%g,%g,%s)"%(self._y,self._y,repr(self._text)) it is clearly reporting two times the y coordinates,