* Got entirely rid of path.py.
* Many modules: fixes for new, stricter, argument passing rules
(most changes were automatic ones -- not all of this is tested!).
* gwin.py: now uses mainloop.py for its main loop and window admin.
* mainloop.py: always call dispatch() with event as a tuple!
* Fix bug in pdb's 'clear' command -- don't set the bpt but clear it!
diff --git a/Lib/plat-irix5/flp.py b/Lib/plat-irix5/flp.py
index 39b45dc..0904efe 100755
--- a/Lib/plat-irix5/flp.py
+++ b/Lib/plat-irix5/flp.py
@@ -208,7 +208,7 @@
class _newobj:
def init(self):
return self
- def add(self, (name, value)):
+ def add(self, name, value):
self.__dict__[name] = value
def make(self, dict):
for name in dict.keys():
@@ -299,9 +299,9 @@
if datum == FORMLINE:
file.seek(pos)
return obj
- if type(datum) <> type(()):
+ if type(datum) <> type(()) or len(datum) <> 2:
raise error, 'Parse error, illegal line in object: '+datum
- obj.add(datum)
+ obj.add(datum[0], datum[1])
#################################################################
# Part 2 - High-level object/form creation routines #