summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-03-07 23:40:13 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-03-07 23:40:13 (GMT)
commit34d11f0670cbfb1e72af5285b36f207f22fb99d2 (patch)
tree1cf65694823451494364f01112227d23726ee9e9 /Mac/Tools/IDE
parent9de988315a3ac8b87a9881d8d2ebf38d19671442 (diff)
downloadcpython-34d11f0670cbfb1e72af5285b36f207f22fb99d2.zip
cpython-34d11f0670cbfb1e72af5285b36f207f22fb99d2.tar.gz
cpython-34d11f0670cbfb1e72af5285b36f207f22fb99d2.tar.bz2
Fixed multi-arg appends.
Diffstat (limited to 'Mac/Tools/IDE')
-rw-r--r--Mac/Tools/IDE/PythonIDEMain.py2
-rw-r--r--Mac/Tools/IDE/Wbase.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Tools/IDE/PythonIDEMain.py b/Mac/Tools/IDE/PythonIDEMain.py
index 69223f5..a340eef 100644
--- a/Mac/Tools/IDE/PythonIDEMain.py
+++ b/Mac/Tools/IDE/PythonIDEMain.py
@@ -204,7 +204,7 @@ class PythonIDE(Wapplication.Application):
title = window.GetWTitle()
if not title:
title = "<no title>"
- windows.append(title, window)
+ windows.append((title, window))
windows.sort()
for title, window in windows:
if title == "Python Interactive": # ugly but useful hack by Joe Strout
diff --git a/Mac/Tools/IDE/Wbase.py b/Mac/Tools/IDE/Wbase.py
index 46a8c96..e1e71b2 100644
--- a/Mac/Tools/IDE/Wbase.py
+++ b/Mac/Tools/IDE/Wbase.py
@@ -490,7 +490,7 @@ class HorizontalPanes(Widget):
for panesize in panesizes:
if current:
self._gutters.append(current)
- self._panesizes.append(current, current + panesize)
+ self._panesizes.append((current, current + panesize))
current = current + panesize
self.makepanebounds()