mirror of
https://github.com/python/cpython.git
synced 2026-01-29 10:42:17 +00:00
Issue 3248: Allow placing ScrolledText in a PanedWindow.
This commit is contained in:
parent
358076f3e4
commit
e9859df798
2 changed files with 5 additions and 0 deletions
|
|
@ -41,3 +41,6 @@ def __init__(self, master=None, cnf=None, **kw):
|
|||
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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue