Re: [PyQt] QTimer memory leek

2007-10-29 Thread Giovanni Bajo
On 10/28/2007 11:58 AM, Phil Thompson wrote: On Friday 26 October 2007, Никитин Артем wrote: Hello, I got memory leak problem with QTimer (PyQt 4.3.1). Further, short example to detect problem. import sys from PyQt4 import QtCore, QtGui def schedule(): QtCore.QTimer.singleShot(0, schedule)

Re: [PyQt] QTimer memory leek

2007-10-28 Thread Phil Thompson
On Friday 26 October 2007, Никитин Артем wrote: Hello, I got memory leak problem with QTimer (PyQt 4.3.1). Further, short example to detect problem. import sys from PyQt4 import QtCore, QtGui def schedule(): QtCore.QTimer.singleShot(0, schedule) def main( ): qApp =

[PyQt] QTimer memory leek

2007-10-26 Thread Никитин Артем
Hello, I got memory leak problem with QTimer (PyQt 4.3.1). Further, short example to detect problem. import sys from PyQt4 import QtCore, QtGui def schedule(): QtCore.QTimer.singleShot(0, schedule) def main( ): qApp = QtGui.QApplication(sys.argv) schedule() sys.exit(qApp.exec_())