View Single Post
Posts: 47 | Thanked: 41 times | Joined on Jan 2010 @ Finland
#8
I don't know what is causing Seg fault in C++, but that python error is probably same as I had in pyKake and was at least in DropN900 too. That problem was fixed, when the QApplication was imported and initialized before anything else from PyQt (lib to use Qt in python) at the begining of app. Like this (done in pyKake and DropN900):
Code:
from PyQt4.QtGui import QApplication
app = QApplication(sys.argv)

...
from PyQt4.QtGui import *
from PyQt4.QtCore import *
I'm not so in with C++, so I'm not sure does this help you, but maybe this can give some hint anyway this may help with Netstory. About python bug here.
 

The Following 2 Users Say Thank You to Yabba For This Useful Post: