diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-12-13 14:48:13 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-12-13 14:48:13 +0000 |
commit | e9859df7980e87f1dbad63fa22250a2e212327a4 (patch) | |
tree | 3c9e147232c19816135e69ff7a684e18bfb03742 | |
parent | 358076f3e4251c49ae028b81f031fc9f8287ec28 (diff) | |
download | cpython-git-e9859df7980e87f1dbad63fa22250a2e212327a4.tar.gz |
Issue 3248: Allow placing ScrolledText in a PanedWindow.
-rw-r--r-- | Lib/lib-tk/ScrolledText.py | 3 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Lib/lib-tk/ScrolledText.py b/Lib/lib-tk/ScrolledText.py index 367aa89ca6..89c4366a44 100644 --- a/Lib/lib-tk/ScrolledText.py +++ b/Lib/lib-tk/ScrolledText.py @@ -41,3 +41,6 @@ class ScrolledText(Text): 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) @@ -107,6 +107,8 @@ Core and builtins 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. |