How to remove warnings such as following warnings from the console:
QObject::startTimer: QTimer can only be used with threads started with QThread
QObject::startTimer: QTimer can only be used with threads started with QThread
QObject::startTimer: QTimer can only be used with threads started with QThread
Update: It is just a guess that it raises because I am using ElementTree to parse an XML document into an element tree:
def parse(source, parser=None):
tree = ElementTree()
tree.parse(source, parser)
return tree
I would appreciate if you guide me which other parser other than ElementTree i can use..