Re: [PyKDE] ANN: Eric3 3.7 available for Mac OS X

2005-06-20 Thread Antoni Aloy
El Viernes, 17 de Junio de 2005 06:10, Kevin Walzer escrigué: I have assembled a package installer of the latest version (3.7) of Eric3, the Python IDE written in PyQt, for Mac OS X. Well, I'm trying Eric 3.7, not on OS X but on a G5 with Fedora Core 4. I have downloaded the latest snapshoot

[PyKDE] Port to Qt4

2005-06-20 Thread Xavier Décoret
Hi I am developping an open source tool based on Qt and PyQt. One of the feature I have to implement now is already present in Qt4 (using QPainter on a QGLWidget). Implementing it for Qt3 is feasible but har,long,error-prone and smells like a waste of time! So the question is: are there any

Re: [PyKDE] Port to Qt4

2005-06-20 Thread Phil Thompson
Hi I am developping an open source tool based on Qt and PyQt. One of the feature I have to implement now is already present in Qt4 (using QPainter on a QGLWidget). Implementing it for Qt3 is feasible but har,long,error-prone and smells like a waste of time! So the question is: are there

Re: [PyKDE] Port to Qt4

2005-06-20 Thread Xavier Décoret
Phil Thompson a écrit : Hi I am developping an open source tool based on Qt and PyQt. One of the feature I have to implement now is already present in Qt4 (using QPainter on a QGLWidget). Implementing it for Qt3 is feasible but har,long,error-prone and smells like a waste of time! So the

Re: [PyKDE] Port to Qt4

2005-06-20 Thread Phil Thompson
Phil Thompson a écrit : Hi I am developping an open source tool based on Qt and PyQt. One of the feature I have to implement now is already present in Qt4 (using QPainter on a QGLWidget). Implementing it for Qt3 is feasible but har,long,error-prone and smells like a waste of time! So the

[PyKDE] Using debugger inside eric for Zope Test Case

2005-06-20 Thread Marco Bizzarri
Hi all. I'm using Eric3 on the development of Zope Products, inside Zope Test Cases. While running from the shell, I can use the import pdb pdb.set_trace() codelet to insert a breakpoint and inspect what is going on inside my tests. If I do the same while running the tests from inside Eric3,

[PyKDE] Memory leak segfault with deleteLater

2005-06-20 Thread Giovanni Bajo
Hello, two problems, which are very similar (and maybe related). The first is a segmentation fault: from qt import * app = QApplication([]) w1 = QWidget(None) w2 = QWidget(w1) w2. = w1 w2.deleteLater() del w1 del w2 app.processEvents() Segmentation fault The thing I don't

Re: [PyKDE] ANN: Eric3 3.7 available for Mac OS X

2005-06-20 Thread Detlev Offenbach
Am Samstag, 18. Juni 2005 09:51 schrieb Antoni Aloy: El Viernes, 17 de Junio de 2005 06:10, Kevin Walzer escrigué: I have assembled a package installer of the latest version (3.7) of Eric3, the Python IDE written in PyQt, for Mac OS X. Well, I'm trying Eric 3.7, not on OS X but on a G5 with

[PyKDE] Re: Memory leak segfault with deleteLater

2005-06-20 Thread Phil Thompson
On Monday 20 June 2005 4:15 pm, Giovanni Bajo wrote: Hello, two problems, which are very similar (and maybe related). The first is a segmentation fault: from qt import * app = QApplication([]) w1 = QWidget(None) w1 reference count is 1. w2 = QWidget(w1) w2 reference count is 2.

[PyKDE] Re: Memory leak segfault with deleteLater

2005-06-20 Thread Giovanni Bajo
Phil Thompson [EMAIL PROTECTED] wrote: I'm not sure if anything can be done to detect and/or prevent the problem. It would be easy enough to contrive the same problem in C++, so I don't really see it as a PyQt problem. I'm open to suggestions. What about adding adding a flag (static variable

Re: [PyKDE] PyQt and sip: WId is undefined

2005-06-20 Thread Jeremy C. Reed
On Fri, 10 Jun 2005, Phil Thompson wrote: On Friday 10 June 2005 10:21 pm, Jeremy C. Reed wrote: I am trying to build PyQt-x11-gpl-3.14.1 on Darwin 7.9.0/Mac OS X. You need PyQt-mac-gpl-3.14.1. X11 on Mac is not supported. Okay, I will give this a try. What are the plans for X11 on Mac?