I came across some new way of connecting signals and slots in PyQt. Please have a look at this link. How to capture output of Python's interpreter and show in a Text widget?. Here the textWritten(signal)=self.normalOutputWritten(function) are connected directly. It is working. Can someone elaborate on this new way of connections.
Rephrasing the question: How to capture output of Python's interpreter and show in a Text widget?. In the above link, testWritten is defined as pyqtSignal and self.normalOutput is the slot function. Usually, we connect using the old or new styles but here they just used the '=' symbol. It is working. Please explain this new way.