Guilherme Polo <ggp...@gmail.com> added the comment:

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

----------
keywords: +patch
nosy: +gpolo
versions: +Python 2.7, Python 3.1 -Python 2.6
Added file: http://bugs.python.org/file13740/issue1119673.diff

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue1119673>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to