[PyKDE] Does PyQt 3.15 work with Qt 3.3.5?

2005-09-07 Thread Huaicai Mo
Hi,   I noticed that Qt 3.3.5 has been released with some bugs fix. I wonder does the new PyQt 3.15 supports Qt 3.3.5?   Thank you very much!   Huaicai ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http://mats.imk.fraunhofer.d

[PyKDE] Possible PyQt bug??(simple test file attached)

2005-08-26 Thread Huaicai Mo
For some reason, my description for the problem was removed somehow in my previous post. Only the test file was kept. Again, here is the description:     Hello,   For the list of QFileInfo objects returned by entryInfoList(), if I pass the object instead of its file name (a string) to

[PyKDE] Possible PyQt bug?? (simple test file attached)

2005-08-26 Thread Huaicai Mo
Hello,   For the list of QFileInfo objects returned by entryInfoList(), if I pass the object instead of its file name (a string) to a receiver. Later, if I try to get its file name from the object through the receiver, Python will crash. On the other hand, if I pass its file name to the r

RE: [PyKDE] Help on wrapping a C library

2005-05-24 Thread Huaicai Mo
: 'word.so', 'anotherReverse': , '__name__': 'word', '__doc__': None} >>> w = word.create_word("How are you?") >>>print w >>> print word.reverse(w) Segmentation fault Thank you very much! Regards, Huaicai &g

RE: [PyKDE] Help on wrapping a C library

2005-05-24 Thread Huaicai Mo
> -Original Message- > From: Phil Thompson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 24, 2005 3:45 AM > To: pykde@mats.imk.fraunhofer.de >.. > In your implementation of reverse() you are freeing the memory allocated > to > the Word structure and the word itself. Because the wra

RE: [PyKDE] Help on wrapping a C library

2005-05-23 Thread Huaicai Mo
Roberto, Thank you for the reply. Initially, I planned to use SWIG, which was used to create the PyOpenGL package, but I read the article: http://people.web.psi.ch/geus/talks/europython2004_geus.pdf It looks to me SIP has better performance, but I am not sure if that's only true for C++? I d