[PyKDE] vendorID + py2app problem

2006-09-26 Thread Vicent Mas
Hi everyone. I am trying to use py2app to create an application bundle out of a binary signed with VendorID, generated out of a Python script. Using py2app on the unsigned script seems to work without problems, and the generated app works fine. However, we can't figure out how to make py2app

[PyKDE] Re: QAbstractItemModel 64 bit problem

2006-09-26 Thread Jeremy Sanders
On Tue, 26 Sep 2006, Jeremy Sanders wrote: The python Ids appear to be large integer values, e.g. 183006915920, but when they are returned from internalId(), then they come back as negative values e.g., -1676677808L, which don't even appear to match the bit pattern of the original value. I'm

[PyKDE] QAbstractItemModel 64 bit problem

2006-09-26 Thread Jeremy Sanders
Hi - I have some code which doesn't appear to work on x86_64 python, but does on i386 def MyModel(qt4.QAbstractItemModel): ... def __init__(self, ...): self.objdict = {} ... def index(self, row, column, parent): """Construct an index for a child of parent