91 """ |
91 """ |
92 Module function handling messages. |
92 Module function handling messages. |
93 |
93 |
94 @param msgType type of the message (integer, QtMsgType) |
94 @param msgType type of the message (integer, QtMsgType) |
95 @param args message handler arguments, for PyQt4 message to be shown |
95 @param args message handler arguments, for PyQt4 message to be shown |
96 (bytes), for PyQt5 context information (QMessageLogContext) and |
96 (bytes), for PyQt5 context information (QMessageLogContext) and |
97 message to be shown (bytes) |
97 message to be shown (bytes) |
98 """ |
98 """ |
99 if len(args) == 2: |
99 if len(args) == 2: |
100 context = args[0] |
100 context = args[0] |
101 message = args[1] |
101 message = args[1] |