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
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.
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,