summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-12-05 17:05:04 (GMT)
committerGuido van Rossum <guido@python.org>1997-12-05 17:05:04 (GMT)
commit7f9732880ea24539e9c011e2c73bb9afb7ee316c (patch)
tree4e32cd0609ff08d9957df224b373903a02db1307 /Lib
parentc37eb56f9672e97f544100dac3561b1c653730ee (diff)
downloadcpython-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.py2
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))