This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gpolo
Recipients drewp, gpolo, loewis
Date 2009-04-22.21:20:19
SpamBayes Score 3.0798255e-08
Marked as misclassified No
Message-id <1240435221.77.0.0764974795618.issue1119673@psf.upfronthosting.co.za>
In-reply-to
Content
> I suppose these lines from ScrolledText.py should
> be expanded to include 'bbox', but I have not tested
> such a fix:
>
>            if m[0] != '_' and m != 'config' and m != 'configure':
>                setattr(self, m, getattr(self.frame, m))

bbox is already there, that is the problem. Including it again there
doesn't solve your problem. The actual problem is that Grid methods
include the "bbox" as an alias to the Misc.grid_bbox method.

One way to fix this is setting only the attributes that are not present
in the Text class. The attached patch does that.
History
Date User Action Args
2009-04-22 21:20:21gpolosetrecipients: + gpolo, loewis, drewp
2009-04-22 21:20:21gpolosetmessageid: <1240435221.77.0.0764974795618.issue1119673@psf.upfronthosting.co.za>
2009-04-22 21:20:20gpololinkissue1119673 messages
2009-04-22 21:20:19gpolocreate