Re: [PyQt] PyQt application crashes on exit

2010-04-08 Thread Tobias Ramos
Well.. i cannot say if this is a Windows 7 issue... but seens to be. the same application hangs on Windows 7... but doesn´t hang in a windows xp sp3 i using PyQt 4.7.2 and Python 2.6.5 and Qt 4.6.2 in both systems windows 7 report an application crash seconds after its closed. If i start the appl

[PyQt] PyQt application crashes on exit

2010-04-08 Thread Alexander Serdyukov
Hi, After I've installed PyQt 4.7.2 many of the samples I work with will repeatedly crash on exit. This would be the simplest example to reproduce this problem. import sys from PyQt4.QtGui import * app = QApplication(sys.argv) tree = QTreeWidget() item = QTreeWidgetItem(tree, ["item 1"]) tree.sh

Re: [PyQt] PyQt application crashes on exit

2010-04-07 Thread Francesco Biccari
Installing the latest PyQt snapshot of the Riverbank website (PyQt-win-gpl-snapshot-4.7.3-22b0acdb1b62) the problem of "python crash on application exit" disappears. : ) I hope Riverbank will provide a new "all-in" installer (4.7.4?) as soon as possible. Ciao ciao. Fra On Wed, Apr 7, 2010 at 2

Re: [PyQt] PyQt application crashes on exit

2010-04-07 Thread Matt Chambers
I'm seeing this as well on Linux. Since upgrading to 4.7.2 almost every apps prints a Segmentation fault message on exit. That is with Python 2.6.4. Our Python2.5 is still using the previously released version and doesn't have the problem when running the same code base. This is compiled ag

Re: [PyQt] PyQt application crashes on exit

2010-04-07 Thread Francesco Biccari
I have the same problem on Vista. PyQt 4.7.2 both with Python 2.6.5 and Python 2.6.4. However your example does not give any problem to me. I think it is a very subtle problem. Sometimes, even if I do exactly the same things (push a button and so on) on the same program, when I close that program,

[PyQt] PyQt application crashes on exit

2010-04-07 Thread Romi Agar
Hi! After upgrading my PyQt to version 4.7.2 on my windows 7 x64 machine running Python 2.6.5 many of my applications tend to crash on exit. Python.exe stops responding if I close the application window. A simple example that seems to always crash on my pc is included as an attachment. Any ideas