]> granicus.if.org Git - python/commitdiff
Fix the exclusion of "config" in the methods copied from Pack to also
authorGuido van Rossum <guido@python.org>
Fri, 5 Dec 1997 17:05:04 +0000 (17:05 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 5 Dec 1997 17:05:04 +0000 (17:05 +0000)
exclude "configure".

Lib/lib-tk/ScrolledText.py

index 4a67f369a2daaf69cfa7239b6e48fd203b9aeec0..f1c2bb08afe5739a1143dd4ff7b56745bd87212a 100644 (file)
@@ -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))