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 656 - cannot inherit from QCoreApplication
: cannot inherit from QCoreApplication
Status: CLOSED FIXED
Product: PySide
Classification: Unclassified
Component: PySide
: HEAD
: All All
: P3 normal
Assigned To: Hugo Parente Lima
:
:
:
  Show dependency treegraph
 
Reported: 2011-01-31 12:46 EET by Farsmo
Modified: 2011-02-02 15:46 EET (History)
8 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Farsmo 2011-01-31 12:46:35 EET
from PySide.QtCore import *

class CoreApp(QCoreApplication):
    def __init__(self,*args):
        print "__init__ running"
        super(CoreApp,self).__init__(*args)
        print "__init__ ok"

import sys
app = CoreApp(sys.argv)


On Windows 1.0.0-beta4, this crashes after "__init__ running".
Comment 1 Hugo Parente Lima 2011-01-31 16:23:01 EET
Fixed in commit:

pyside/43a8f4089e93fc48556f42ec49db8d06784b49ae
Comment 2 renato filho 2011-02-02 15:46:14 EET
released on beta 5