1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
28 """ | 28 """ |
29 Constructor | 29 Constructor |
30 | 30 |
31 @param parent reference to the parent object (QObject) | 31 @param parent reference to the parent object (QObject) |
32 """ | 32 """ |
33 QTcpServer.__init__(self, parent) | 33 super().__init__(parent) |
34 | 34 |
35 def incomingConnection(self, socketDescriptor): | 35 def incomingConnection(self, socketDescriptor): |
36 """ | 36 """ |
37 Protected method handling an incoming connection. | 37 Protected method handling an incoming connection. |
38 | 38 |