Re: [PyKDE] pylupdate4 parse error on files with .pyw extension

2006-11-30 Thread Martin Kiebacher
Thank's for your quick info. I'am using the binaries, so i'll wait for a fix in the next official pyqt-release. martin 2006/11/29, Andreas Pakulat [EMAIL PROTECTED]: On 29.11.06 16:05:53, Martin Kiebacher wrote: Hello list, when i try to create a .ts-file from my python-script with

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread mancausoft
Phil Thompson [EMAIL PROTECTED] scrisse: Can you try with tonight's SIP and PyQt4 snapshots? (Not the current PyQt snapshot - the one that will be generated tonight.)Can you try the result it the same ~/PyQt-x11-gpl-4-snapshot-20061129/examples/draganddrop/draggableicons $

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread Phil Thompson
On Thursday 30 November 2006 11:02 am, mancausoft wrote: Phil Thompson [EMAIL PROTECTED] scrisse: Can you try with tonight's SIP and PyQt4 snapshots? (Not the current PyQt snapshot - the one that will be generated tonight.)Can you try the result it the same

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread mancausoft
Phil Thompson [EMAIL PROTECTED] scrisse: On Thursday 30 November 2006 11:02 am, mancausoft wrote: Phil Thompson [EMAIL PROTECTED] scrisse: Can you try with tonight's SIP and PyQt4 snapshots? (Not the current PyQt snapshot - the one that will be generated tonight.)Can you try the

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread Eriol
Alle 12:22, giovedì 30 novembre 2006, Phil Thompson ha scritto: Can anybody else reproduce the problem? Yes, using PyQT 4.0.1, sip 4.4.5 on debian etch. I installed also libqt4-debug. [EMAIL PROTECTED]:~/draggableicons$ gdb -args python draggableicons.py GNU gdb 6.4.90-debian Copyright (C) 2006

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread Phil Thompson
On Thursday 30 November 2006 12:04 pm, Eriol wrote: Alle 12:22, giovedì 30 novembre 2006, Phil Thompson ha scritto: Can anybody else reproduce the problem? Yes, using PyQT 4.0.1, sip 4.4.5 on debian etch. Sorry, I meant with current snapshots - and preferably with Qt v4.2.2. Phil

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread Eriol
Alle 13:13, giovedì 30 novembre 2006, Phil Thompson ha scritto: Sorry, I meant with current snapshots - and preferably with Qt v4.2.2. Sorry, now I can't... I hope to do it later. -- Eriol - *p = NULL; - EIBTI GPG Key ID 297BE0CA ___ PyKDE

[PyKDE] PyQt crash

2006-11-30 Thread Giovanni Bajo
Hello, the following code snippet causes a segfault: from qt import QApplication app = QApplication([-v]*10) del app app = QApplication([]) I'm using Qt 3.3.6, PyQt 3.16, SIP 4.4.3, under Windows. -- Giovanni Bajo ___ PyKDE mailing list

Re: [PyKDE] PyQt crash

2006-11-30 Thread Andreas Pakulat
On 30.11.06 17:46:17, Giovanni Bajo wrote: Hello, the following code snippet causes a segfault: from qt import QApplication app = QApplication([-v]*10) del app app = QApplication([]) I'm using Qt 3.3.6, PyQt 3.16, SIP 4.4.3, under Windows. Same under linux, with Qt 3.3.7,

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread Ulrich Berning
Phil Thompson wrote: On Thursday 30 November 2006 11:02 am, mancausoft wrote: Phil Thompson [EMAIL PROTECTED] scrisse: Can you try with tonight's SIP and PyQt4 snapshots? (Not the current PyQt snapshot - the one that will be generated tonight.)Can you try the result it the

[PyKDE] PyQt4: PyObject in SIGNAL

2006-11-30 Thread Giovanni Bajo
Hello, what's the meaning of the string PyObject used within the signature of a signal in PyQt4? I can't seem to find it in the PyQt4 documentation. If I pass it a random python object I get core dumps and random crashes, so I assume it's not really meant for that... -- Giovanni Bajo

Re: [PyKDE] bug in pyqt or in example?

2006-11-30 Thread mancausoft
Phil Thompson [EMAIL PROTECTED] scrisse: No, I was confused because I was assuming that the code was a correct port of the original C++. The correct fix is to replace... pixmap = child.pixmap() ...with... pixmap = QtGui.QPixmap(child.pixmap()) ...which is the equivalent of

Re: [PyKDE] PyQt crash

2006-11-30 Thread Giovanni Bajo
Phil Thompson wrote: from qt import QApplication app = QApplication([-v]*10) del app app = QApplication([]) I'm using Qt 3.3.6, PyQt 3.16, SIP 4.4.3, under Windows. It will be fixed in tonight's snapshot. A workaround is to pass a dummy argument in the second ctor call. Thanks. Note that

Re: [PyKDE] PyQt4: PyObject in SIGNAL

2006-11-30 Thread Mark Summerfield
On Thu 30-Nov-06 18:41, Giovanni Bajo wrote: Hello, what's the meaning of the string PyObject used within the signature of a signal in PyQt4? I can't seem to find it in the PyQt4 documentation. If I pass it a random python object I get core dumps and random crashes, so I assume it's not