|
From: John H. <jdh...@ac...> - 2004-06-01 14:06:35
|
>>>>> "Andrew" == Andrew Straw <str...@as...> writes:
Andrew> Hi all, I'm trying to get some figures ready, but I've
Andrew> encountered what may be a bug demonstrated by a trivial
Andrew> program:
Yeah, it's a bug. Replace the autoscale function in the Locator base
class, which currently raises the NotImplementedError, with
def autoscale(self):
'autoscale the view limits'
self.verify_intervals()
return self.dataInterval.get_bounds()
Should cure what ails you.
JDH
|