Kaydet (Commit) 7f973288 authored tarafından Guido van Rossum's avatar Guido van Rossum

Fix the exclusion of "config" in the methods copied from Pack to also

exclude "configure".
üst c37eb56f
......@@ -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))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment