From: Ben R. <be...@cs...> - 2009-08-10 12:06:46
|
Python 2.6 has changed and object.__init__() no longer takes arbitrary arguments. Using 2.6 just leads to constant TypeError messages simply add a blank __init__ function to BaseProtogenClass and all is fixed :) prototypes.py:88 class BaseProtogenClass(object): """All types are derived from this""" def __init__(self, *args, **kwargs): "Do Nothing" |