diff options
author | Guido van Rossum <guido@python.org> | 1997-12-05 17:05:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-12-05 17:05:04 (GMT) |
commit | 7f9732880ea24539e9c011e2c73bb9afb7ee316c (patch) | |
tree | 4e32cd0609ff08d9957df224b373903a02db1307 /Lib | |
parent | c37eb56f9672e97f544100dac3561b1c653730ee (diff) | |
download | cpython-7f9732880ea24539e9c011e2c73bb9afb7ee316c.zip cpython-7f9732880ea24539e9c011e2c73bb9afb7ee316c.tar.gz cpython-7f9732880ea24539e9c011e2c73bb9afb7ee316c.tar.bz2 |
Fix the exclusion of "config" in the methods copied from Pack to also
exclude "configure".
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib-tk/ScrolledText.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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)) |