[Python-checkins] r67735 - in python/branches/release25-maint: Lib/lib-tk/ScrolledText.py Misc/NEWS

martin.v.loewis python-checkins at python.org
Sat Dec 13 15:48:14 CET 2008


Author: martin.v.loewis
Date: Sat Dec 13 15:48:13 2008
New Revision: 67735

Log:
Issue 3248: Allow placing ScrolledText in a PanedWindow.


Modified:
   python/branches/release25-maint/Lib/lib-tk/ScrolledText.py
   python/branches/release25-maint/Misc/NEWS

Modified: python/branches/release25-maint/Lib/lib-tk/ScrolledText.py
==============================================================================
--- python/branches/release25-maint/Lib/lib-tk/ScrolledText.py	(original)
+++ python/branches/release25-maint/Lib/lib-tk/ScrolledText.py	Sat Dec 13 15:48:13 2008
@@ -41,3 +41,6 @@
         for m in methods:
             if m[0] != '_' and m != 'config' and m != 'configure':
                 setattr(self, m, getattr(self.frame, m))
+
+    def __str__(self):
+        return str(self.frame)

Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Sat Dec 13 15:48:13 2008
@@ -107,6 +107,8 @@
 Library
 -------
 
+- Issue 3248: Allow placing ScrolledText in a PanedWindow.
+
 - Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to
   give correct results in the case where one argument is a quiet NaN
   and the other is a finite number that requires rounding.


More information about the Python-checkins mailing list