It would be helpful if someone would run this code for me as a health check.
Python 3.3.1 (default, Apr 17 2013, 22:30:32) [GCC 4.7.3] on linux Type "help", "copyright", "credits" or "license" for more information. >>>from PyQt5.QtCore import pyqtSignal >>>for i in dir(pyqtSignal): ... if i == 'emit': ... print(True) ... >>>
Is true for someone else? Note that when importing a QObject from PyQt4:
>>> from PyQt4.QtCore import QObject >>> for i in dir(QObject): ... if i == 'emit': ... print(True) ... True
pyqt5 qt-signals pyqt
Adb
source share