From: Guido van Rossum Date: Fri, 5 Dec 1997 17:05:04 +0000 (+0000) Subject: Fix the exclusion of "config" in the methods copied from Pack to also X-Git-Tag: v1.5b2~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f9732880ea24539e9c011e2c73bb9afb7ee316c;p=python Fix the exclusion of "config" in the methods copied from Pack to also exclude "configure". --- diff --git a/Lib/lib-tk/ScrolledText.py b/Lib/lib-tk/ScrolledText.py index 4a67f369a2..f1c2bb08af 100644 --- a/Lib/lib-tk/ScrolledText.py +++ b/Lib/lib-tk/ScrolledText.py @@ -33,5 +33,5 @@ class ScrolledText(Text): # Copy Pack methods of self.frame -- hack! for m in Pack.__dict__.keys(): - if m[0] != '_' and m != 'config': + if m[0] != '_' and m != 'config' and m != 'configure': setattr(self, m, getattr(self.frame, m))