mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError
Untabified.
This commit is contained in:
parent
850d3980ab
commit
1990943095
1 changed files with 3 additions and 3 deletions
|
@ -34,9 +34,9 @@ class ScrolledText(Text):
|
|||
self.vbar['command'] = self.yview
|
||||
|
||||
# Copy geometry methods of self.frame -- hack!
|
||||
methods = Pack.__dict__.keys()
|
||||
methods = methods + Grid.__dict__.keys()
|
||||
methods = methods + Place.__dict__.keys()
|
||||
methods = Pack.__dict__.keys()
|
||||
methods = methods + Grid.__dict__.keys()
|
||||
methods = methods + Place.__dict__.keys()
|
||||
|
||||
for m in methods:
|
||||
if m[0] != '_' and m != 'config' and m != 'configure':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue