Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/lib-tk/ScrolledText.py

    r2 r391  
    2828        self.vbar['command'] = self.yview
    2929
    30         # Copy geometry methods of self.frame -- hack!
     30        # Copy geometry methods of self.frame without overriding Text
     31        # methods -- hack!
     32        text_meths = vars(Text).keys()
    3133        methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
     34        methods = set(methods).difference(text_meths)
    3235
    3336        for m in methods:
Note: See TracChangeset for help on using the changeset viewer.