commit | 7f9732880ea24539e9c011e2c73bb9afb7ee316c | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Dec 05 17:05:04 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Dec 05 17:05:04 1997 +0000 |
tree | 4e32cd0609ff08d9957df224b373903a02db1307 | |
parent | c37eb56f9672e97f544100dac3561b1c653730ee [diff] |
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 4a67f36..f1c2bb0 100644 --- a/Lib/lib-tk/ScrolledText.py +++ b/Lib/lib-tk/ScrolledText.py
@@ -33,5 +33,5 @@ # 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))