summaryrefslogtreecommitdiffstats
path: root/Lib/stdwin/CSplit.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-01 19:35:13 (GMT)
committerGuido van Rossum <guido@python.org>1992-01-01 19:35:13 (GMT)
commitbdfcfccbe591e15221f35add01132174c9b4e669 (patch)
tree7e5f0d52b8c44e623b12e8f4b5cd645c361e5aeb /Lib/stdwin/CSplit.py
parent4d8e859e8f0a209a7e999ce9cc0988156c795949 (diff)
downloadcpython-bdfcfccbe591e15221f35add01132174c9b4e669.zip
cpython-bdfcfccbe591e15221f35add01132174c9b4e669.tar.gz
cpython-bdfcfccbe591e15221f35add01132174c9b4e669.tar.bz2
New == syntax
Diffstat (limited to 'Lib/stdwin/CSplit.py')
-rwxr-xr-xLib/stdwin/CSplit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/stdwin/CSplit.py b/Lib/stdwin/CSplit.py
index 5c57d90..90d137e 100755
--- a/Lib/stdwin/CSplit.py
+++ b/Lib/stdwin/CSplit.py
@@ -43,7 +43,7 @@ class CSplit(Split):
# XXX One day Python will have automatic conversions...
n = len(self.children)
fn = float(n)
- if n = 0: return
+ if n == 0: return
(left, top), (right, bottom) = bounds
width, height = right-left, bottom-top
child_width, child_height = width*3/(n+4), height*3/(n+4)