[PyKDE] custom clipboard types broken?

2005-10-05 Thread Anthony Heading
Hi, Attached is a program which I believe worked perfectly in earlier versions of pyqt, but now no longer functions. The program is supposed to put data onto the windows clipboard in 'CSV' format (the clipboard id that seems to correspond to CSV format is hardwired in the example, but in realit

[PyKDE] Python program runs on cmd line, in IDE, but raises an exception when stepping through

2005-10-05 Thread Tony C
I've just started using Eric3 on Windows. Nice IDE and lots of features, but the program I was running  raises an exception when I step through the code. However, when  I run my program on the cmd line as in ... python mypro.py argument  It runs without exceptions. When I run my program fro

[PyKDE] Eric3 On Windows XP from (http://www.quadgames.com/download/pythonqt/)

2005-10-05 Thread Tony C
Hello, I've installed the binaries for Eric3 on Windows from http://www.quadgames.com/download/pythonqt/ Does anyone know if this version of Eric3 work with Python 2.4.2? The web page refers to 2.4.1, but not "or later" thanks Tony ___ PyK

Re: [PyKDE] QWidgetFactory and classes defined in Python

2005-10-05 Thread Yann Cointepas
I am sorry, there is an error in the example code I sent. The las line of testQWidgetFactory.py should have been: w.child( 'myCustomWidget1' ).pythonMethod() The behaviour is different on various PyQt/sip versions. The problem is related to the deletion of the Python version of MyCustomWidget i

Re: [PyKDE] eric3: Breakpoint in another file

2005-10-05 Thread Jul
>sys does not seem to have a breakpoint function: > import sys sys.breakpoint() >Traceback (most recent call last): > File "", line 1, in ? >AttributeError: 'module' object has no attribute 'breakpoint' from sys import breakpoint >Traceback (most recent call last): > File "", line 1

Re: [PyKDE] eric3: Breakpoint in another file

2005-10-05 Thread Florian Lindner
Am Mittwoch, 5. Oktober 2005 07:00 schrieb Jim Baack: > On Oct. 4, Detlev Offenbach wrote: > >Am Dienstag, 4. Oktober 2005 20:22 schrieb Florian Lindner: > >> Hello, > >> I've tried out eric3 and it looks promising. > >> However, I have one problem. I open a file which is part of Zope3 and > > set

[PyKDE] eric3: Breakpoint in another file

2005-10-05 Thread Jim Baack
On Oct. 4, Detlev Offenbach wrote: >Am Dienstag, 4. Oktober 2005 20:22 schrieb Florian Lindner: >> Hello, >> I've tried out eric3 and it looks promising. >> However, I have one problem. I open a file which is part of Zope3 and set a >> breakpoint there. Now I open the runzope start script and execu

Re: [PyKDE] Need help on a weird QThread problem

2005-10-05 Thread İsmail Dönmez
FWIW I switched to Python threading module and everything is ok now. On Friday 30 September 2005 17:27, İsmail Dönmez wrote: > Hi all, > > I implemented a QThread based function to run some external command in my > application. Its works like this : > > main widget: > > command = QThreadClass() >