Re: [PyKDE] Threading and multiple processors, any change?

2007-03-01 Thread V. Armando Sole
At 12:18 01/03/2007 -0800, Kevin Cureton wrote: Summary: It is worthwhile using threads if you do a lot of computation that takes time from the UI. The abstraction makes it easy to move compute intensive code into a thread and then communicate with the main GUI thread when needed (via signals or

[PyKDE] QObject.findChildren doesn't work as expected with QRegExp

2007-03-01 Thread Kerri Reno
I have the following code: def testfindChildren(self): hLayout = QtGui.QHBoxLayout() hLayout.setObjectName('hLayout_0') self.searchLayout.addLayout(hLayout) print self.findChild(QtGui.QHBoxLayout,'hLayout_0')

Re: [PyKDE] What's about QPlastiqueStyle

2007-03-01 Thread Andreas Pakulat
On 01.03.07 22:46:50, The MoonSeeker wrote: > I dont found QPlastiqueStyle in PyQt reference class. Is it possible to have > a > platic style with PyQT? It seems like PyQt4 doesn't wrap that class. A reason that comes to mind is that its a plugin... However you can change the default style of Q

Re: [PyKDE] Crashing problems, suggestions?

2007-03-01 Thread Matt Newell
On Thursday 01 March 2007 12:36, Kevin Cureton wrote: > Since I converted my application from PyQt3 to PyQt4, I've run into > some issues with the threading. > > I ran into the deadlock problems a while back and managed to avoid it > by only sending signals from QThreads to the main thread. The mai

[PyKDE] What's about QPlastiqueStyle

2007-03-01 Thread The MoonSeeker
Hi, I dont found QPlastiqueStyle in PyQt reference class. Is it possible to have a platic style with PyQT? Thank you! Francis ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] Crashing problems, suggestions?

2007-03-01 Thread Michael Guntsche
Hello Kevin, On Mar 1, 2007, at 21:36, Kevin Cureton wrote: I ran into the deadlock problems a while back and managed to avoid it by only sending signals from QThreads to the main thread. The main thread, instead of sending signals or events to the QThreads, would instead hand them

Re: [PyKDE] Unexplained delay calling Python method- partial

2007-03-01 Thread Tony Cappellini
Message: 3 Date: Thu, 1 Mar 2007 16:04:24 +0100 From: Hans-Peter Jansen <[EMAIL PROTECTED]> Subject: Re: [PyKDE] Unexplained delay calling Python method- partial explanation This sounds, like you have some invalid/misbehaving devices installed, e.g. floppy A: activated in BIOS, but no driv

[PyKDE] Crashing problems, suggestions?

2007-03-01 Thread Kevin Cureton
Since I converted my application from PyQt3 to PyQt4, I've run into some issues with the threading. I ran into the deadlock problems a while back and managed to avoid it by only sending signals from QThreads to the main thread. The main thread, instead of sending signals or events to the QT

Re: [PyKDE] Unexplained delay calling Python method- partial explanation

2007-03-01 Thread Hans-Peter Jansen
Am Donnerstag, 1. März 2007 08:13 schrieb Tony Cappellini: > When I set the breakpoint in the debugger, I had inadvertently set it > on this line > FileDialog = QFileDialog() > > I really wanted to set the breakpoint on > the getOpenFileNames() call. > > However, I've FOUND the source of the

Re: [PyKDE] Threading and multiple processors, any change?

2007-03-01 Thread Kevin Cureton
The application I've been working on (a client application that talks with a server backended by a database) is far more responsive when I run the multi-threaded version of the application. It does a lot of concurrent accesses to data on the server (depending on the user context). The multi

Re: [PyKDE] Threading and multiple processors, any change?

2007-03-01 Thread Matt Newell
On Thursday 01 March 2007 03:16, Phil Thompson wrote: > On Thursday 01 March 2007 10:47 am, V. Armando Sole wrote: > > Hello, > > > > I just have a simple question (that does not imply a simple answer). > > > > With all the new options/possibilities recently discussed concerning the > > GIL handlin

Re: [PyKDE] PyKDE error ??

2007-03-01 Thread Jim Bublitz
On Thursday 01 March 2007 03:24, James B. wrote: > Hi All, > > I have been trying to install PyKDE in my > system(having KDE-3.5.6). From the Riverbank site I > have downloaded and installed sip-4.5.2.tar.gz and > PyQt-x11-gpl-3.17.tar.gz (PyQt-x11-gpl-4.1.1.tar.gz > did not work, gave me qmake err

[PyKDE] PyKDE error ??

2007-03-01 Thread James B.
Hi All, I have been trying to install PyKDE in my system(having KDE-3.5.6). From the Riverbank site I have downloaded and installed sip-4.5.2.tar.gz and PyQt-x11-gpl-3.17.tar.gz (PyQt-x11-gpl-4.1.1.tar.gz did not work, gave me qmake error). and after that PyKDE-3.16.0.tar.gz. but when I ran from

Re: [PyKDE] Threading and multiple processors, any change?

2007-03-01 Thread Phil Thompson
On Thursday 01 March 2007 10:47 am, V. Armando Sole wrote: > Hello, > > I just have a simple question (that does not imply a simple answer). > > With all the new options/possibilities recently discussed concerning the > GIL handling, is it possible to profit of multiple processors in Python > using

[PyKDE] Threading and multiple processors, any change?

2007-03-01 Thread V. Armando Sole
Hello, I just have a simple question (that does not imply a simple answer). With all the new options/possibilities recently discussed concerning the GIL handling, is it possible to profit of multiple processors in Python using QThreads thru PyQt4? Thanks for your time. Best regards, Armand