(self)
| 67 | self._addrs = addrs |
| 68 | |
| 69 | def run(self): |
| 70 | while not self._quitEvent.wait(NETWORK_ADDRESSES_CHECK_TIMEOUT): |
| 71 | self._updateAddrs() |
| 72 | |
| 73 | |
| 74 | class NetworkingThread(_StoppableDaemonThread): |
nothing calls this directly
no test coverage detected