mirror of
https://github.com/python/cpython.git
synced 2025-09-15 13:16:12 +00:00
call the correct base method (found due to better inheritance checking in 2.2)
This commit is contained in:
parent
666b1e7e2f
commit
05a56b87bb
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ class HorizontalPanes(Widget):
|
||||||
"""panesizes should be a tuple of numbers. The length of the tuple is the number of panes,
|
"""panesizes should be a tuple of numbers. The length of the tuple is the number of panes,
|
||||||
the items in the tuple are the relative sizes of these panes; these numbers should add up
|
the items in the tuple are the relative sizes of these panes; these numbers should add up
|
||||||
to 1 (the total size of all panes)."""
|
to 1 (the total size of all panes)."""
|
||||||
ClickableWidget.__init__(self, possize)
|
Widget.__init__(self, possize)
|
||||||
self._panesizes = panesizes
|
self._panesizes = panesizes
|
||||||
self._gutter = gutter
|
self._gutter = gutter
|
||||||
self._enabled = 1
|
self._enabled = 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue