From 7f9732880ea24539e9c011e2c73bb9afb7ee316c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 5 Dec 1997 17:05:04 +0000 Subject: [PATCH] Fix the exclusion of "config" in the methods copied from Pack to also exclude "configure". --- Lib/lib-tk/ScrolledText.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/lib-tk/ScrolledText.py b/Lib/lib-tk/ScrolledText.py index 4a67f369a2d..f1c2bb08afe 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))