PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 1107 - QThread.currentThreadId crashes on Win32
: QThread.currentThreadId crashes on Win32
Status: RESOLVED ALREADYFIXED
Product: PySide
Classification: Unclassified
Component: QtCore
: HEAD
: PC MS Windows XP/Vista/7
: P2 normal
Assigned To: Paulo Alcantara
:
:
:
  Show dependency treegraph
 
Reported: 2012-01-02 11:05 EET by Farsmo
Modified: 2012-03-05 20:00 EET (History)
10 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Farsmo 2012-01-02 11:05:39 EET
This program works fine on Linux and crashes on Win32:

from PySide.QtCore import *
from PySide.QtGui import *

app = QApplication([])
print "QApplication created"
tid = QThread.currentThreadId() #crash
print "currentThreadId called"
Comment 1 Paulo Alcantara 2012-01-25 20:03:45 EET
Hi Farsmo,

It works fine with PySide built against git HEAD on Win32. I'm guessing it has
been fixed since Shiboken commit 7ae059fbb6882174c4da3aeb2017390afffa11fe (BUG
#1105).

I'd recommend you to test it with git HEAD.
Comment 2 Paulo Alcantara 2012-01-25 20:10:38 EET
Hi Farsmo,

Thanks for the report!

I'm marking this bug as RESOLVED <ALREADYFIXED>.
Comment 3 Pedro Algarvio 2012-03-05 20:00:06 EET
(In reply to comment #2)
> Hi Farsmo,
> 
> Thanks for the report!
> 
> I'm marking this bug as RESOLVED <ALREADYFIXED>.

This also failed on linux for me.