Chris Withers wrote at 2007-8-10 07:38 +0100: > ... >I'm thinking something along the lines of create intSet.py something >like as follows and putting it somewhere on the PYTHONPATH: > >class intSet(Persistent): > > def __setstate__(self,...): > ... > >Would that work?
No. Both "Persistent" and "intSet" come with their own C level attributes. Therefore, Python does not allow them to be combined through subclassing. -- Dieter _______________________________________________ Zope-Dev maillist - [email protected] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope )
