[PyQt] Qt-4.3.0 hangs

2007-07-26 Thread Jeremy Sanders
Has anyone noticed problems with PyQt4 apps under Ubuntu Feisty recently? It appears an Ubuntu update now makes my application hang often and reproducibly (without CPU load). I suspect it is the recent Qt4 update to qt4-4.3.0. If I strace the program, I get the following (I kill it in the end):

Re: [PyQt] compiling sip on vista

2007-07-26 Thread Arve Knudsen
Hi Boris A colleague told me he had to put the MinGW subdirectory containing cc1 in PATH. Hope this helps, Arve On 7/26/07, b b [EMAIL PROTECTED] wrote: Hi, I'm trying to compile sip 4.6 on windows vista. I have Python 2.5 installed in c:\Python25. I have Qt 4.3.0 installed in c:\Qt\4.3.0

Re: [PyQt] compiling sip on vista

2007-07-26 Thread Tom Brown
On Thursday 26 July 2007 11:52, Tom Brown wrote: On Thursday 26 July 2007 11:41, b b wrote: yes, same error C:\sip-4.6mingw32-make mingw32-make[1]: Entering directory `C:/sip-4.6/sipgen' makefile:29: warning: overriding commands for target `.c.o' makefile:26: warning: ignoring old

Re: [PyQt] compiling sip on vista

2007-07-26 Thread Tom Brown
On Thursday 26 July 2007 11:41, b b wrote: yes, same error C:\sip-4.6mingw32-make mingw32-make[1]: Entering directory `C:/sip-4.6/sipgen' makefile:29: warning: overriding commands for target `.c.o' makefile:26: warning: ignoring old commands for target `.c.o' gcc -c -O2 -w -DUNICODE

Re: [PyQt] Slot disconnection problem

2007-07-26 Thread Phil Thompson
On Thursday 26 July 2007 6:33 pm, Arve Knudsen wrote: Hello I've noticed a problem with PyQt's signal/slot mechanism. If I connect a signal to a QDialog subclass instance's accept method without using SLOT, and not having defined that method in the subclass (i.e., it is defined in the C++

Re: [PyQt] compiling sip on vista

2007-07-26 Thread Tom Brown
On Thursday 26 July 2007 10:45, b b wrote: Hi, thanks for the tip, but it helped not. b. When you run mingw32-make, do you get the same errors? What errors do you get if they are different? Thanks, Tom ___ PyQt mailing list

Re: [PyQt] compiling sip on vista

2007-07-26 Thread b b
Hi, thanks for the tip, but it helped not. b. On 7/26/07, Tom Brown [EMAIL PROTECTED] wrote: On Thursday 26 July 2007 06:00, b b wrote: [...] C:\sip-4.6make makefile:29: warning: overriding commands for target `.c.o' makefile:26: warning: ignoring old commands for target `.c.o'

Re: [PyQt] QTextEdit-print() in Python ?

2007-07-26 Thread David Boddie
On Thu Jul 26 12:15:51 BST 2007, kib2 wrote: I don't see any way to use the new QTextEdit-print() method in Python, print is a Python keyword so I've tried with print_ (like in QTextDocument) but it failed. Was it implemented ? It looks like an interesting bug to me: the print method

Re: [PyQt] compiling sip on vista

2007-07-26 Thread Tom Brown
On Thursday 26 July 2007 06:00, b b wrote: [...] C:\sip-4.6make makefile:29: warning: overriding commands for target `.c.o' makefile:26: warning: ignoring old commands for target `.c.o' mingw32-make[1]: Entering directory `C:/sip-4.6/sipgen' gcc -c -O2 -w -DUNICODE -DQT_LARGEFILE_SUPPORT -I.

[PyQt] QTextEdit-print() in Python ?

2007-07-26 Thread kib2
Hi, I don't see any way to use the new QTextEdit-print() method in Python, print is a Python keyword so I've tried with print_ (like in QTextDocument) but it failed. Was it implemented ? Thanks. ___ PyQt mailing listPyQt@riverbankcomputing.com

[PyQt] compiling sip on vista

2007-07-26 Thread b b
Hi, I'm trying to compile sip 4.6 on windows vista. I have Python 2.5 installed in c:\Python25. I have Qt 4.3.0 installed in c:\Qt\4.3.0 together with MinGW in c:\MinGW. I have environment variable PATH set to c:\Qt\4.3.0\bin;c:\MinGW\bin And here is what I did: C:\sip-4.6configure.py -p

Re: [PyQt] commercial license snapshots

2007-07-26 Thread Phil Thompson
On Thursday 26 July 2007 1:25 am, Matt Chambers wrote: Is it possible to have maybe some unsupported commercial license snapshots made available? Once a commercial release is out, we're pretty much stuck with it while bugs are fixed in the snapshots. Commercial snapshots have always been

Re: [PyQt] compiling sip on vista

2007-07-26 Thread b b
yes, same error C:\sip-4.6mingw32-make mingw32-make[1]: Entering directory `C:/sip-4.6/sipgen' makefile:29: warning: overriding commands for target `.c.o' makefile:26: warning: ignoring old commands for target `.c.o' gcc -c -O2 -w -DUNICODE -DQT_LARGEFILE_SUPPORT -I. -o main.o main.c gcc:

[PyQt] Slot disconnection problem

2007-07-26 Thread Arve Knudsen
Hello I've noticed a problem with PyQt's signal/slot mechanism. If I connect a signal to a QDialog subclass instance's accept method without using SLOT, and not having defined that method in the subclass (i.e., it is defined in the C++ superclass), I am not able to disconnect it. I have to use

Re: [PyQt] QTextEdit-print() in Python ?

2007-07-26 Thread Giovanni Bajo
On 7/26/2007 5:45 PM, David Boddie wrote: On Thu Jul 26 12:15:51 BST 2007, kib2 wrote: I don't see any way to use the new QTextEdit-print() method in Python, print is a Python keyword so I've tried with print_ (like in QTextDocument) but it failed. Was it implemented ? It looks like an

Re: [PyQt] Slot disconnection problem

2007-07-26 Thread Arve Knudsen
On 7/26/07, Phil Thompson [EMAIL PROTECTED] wrote: On Thursday 26 July 2007 6:33 pm, Arve Knudsen wrote: Hello I've noticed a problem with PyQt's signal/slot mechanism. If I connect a signal to a QDialog subclass instance's accept method without using SLOT, and not having defined that

Re: [PyQt] compiling sip on vista

2007-07-26 Thread b b
No, I have only Python and Qt installed. On 7/26/07, Tom Brown [EMAIL PROTECTED] wrote: On Thursday 26 July 2007 11:41, b b wrote: yes, same error C:\sip-4.6mingw32-make mingw32-make[1]: Entering directory `C:/sip-4.6/sipgen' makefile:29: warning: overriding commands for target `.c.o'

Re: [PyQt] compiling sip on vista

2007-07-26 Thread b b
Hi, thanks for the tip, but it helped not. :( b. On 7/26/07, Arve Knudsen [EMAIL PROTECTED] wrote: Hi Boris A colleague told me he had to put the MinGW subdirectory containing cc1 in PATH. Hope this helps, Arve On 7/26/07, b b [EMAIL PROTECTED] wrote: Hi, I'm trying to compile sip 4.6

[PyQt] ANN; PyQwt-4.2.3 released

2007-07-26 Thread Gerard Vermeulen
What is PyQwt ( http://pyqwt.sourceforge.net ) ? - it is a set of Python bindings for the Qwt C++ class library which extends the Qt framework with widgets for scientific and engineering applications. It provides a widget to plot 2-dimensional data and various widgets to display and