diff options
author | Guido van Rossum <guido@python.org> | 1991-12-26 13:06:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-26 13:06:29 (GMT) |
commit | ce08448165249b8be2181f231178db52504e2b01 (patch) | |
tree | 65e19b98f946c41b91c720f84ceb5a901fa44ea7 /Lib/lib-stdwin/CSplit.py | |
parent | decc4b99e136000e4f03df676ff672c0eccafd3c (diff) | |
download | cpython-ce08448165249b8be2181f231178db52504e2b01.zip cpython-ce08448165249b8be2181f231178db52504e2b01.tar.gz cpython-ce08448165249b8be2181f231178db52504e2b01.tar.bz2 |
New class syntax.
Diffstat (limited to 'Lib/lib-stdwin/CSplit.py')
-rw-r--r-- | Lib/lib-stdwin/CSplit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-stdwin/CSplit.py b/Lib/lib-stdwin/CSplit.py index a9d3556..5c57d90 100644 --- a/Lib/lib-stdwin/CSplit.py +++ b/Lib/lib-stdwin/CSplit.py @@ -7,7 +7,7 @@ from math import pi, sin, cos from Split import Split -class CSplit() = Split(): +class CSplit(Split): # def getminsize(self, (m, (width, height))): # Since things look best if the children are spaced evenly |