floogads
floogads

Reputation: 271

What module is PYSIGNAL defined in PyQt4

All of the examples I read online use

from PyQt4 import *

or some variant of that, importing everything. I don't want to do this, but I can't find where PYSIGNAL is defined!

Upvotes: 1

Views: 805

Answers (1)

Matthew Flaschen
Matthew Flaschen

Reputation: 284836

I think you want:

PyQt4.Qt.SIGNAL

This is the same as:

PyQt4.QtCore.SIGNAL

Upvotes: 1

Related Questions