summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-12-05 17:05:04 +0000
committerGuido van Rossum <guido@python.org>1997-12-05 17:05:04 +0000
commiteb10a7b9dcfaba76ae9bf7b518fabfa24f97f05f (patch)
treec2d622b58efeec478580a2c94355f3f087bcfb22 /Lib
parent0908e17bc2ccd7e4e3b90a1fe60f0e6171a161f5 (diff)
downloadcpython-eb10a7b9dcfaba76ae9bf7b518fabfa24f97f05f.tar.gz
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 4a67f369a2..f1c2bb08af 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))