(self)
| 210 | self.dgram_examine) |
| 211 | |
| 212 | def test_ThreadingUDPServer(self): |
| 213 | self.run_server(socketserver.ThreadingUDPServer, |
| 214 | socketserver.DatagramRequestHandler, |
| 215 | self.dgram_examine) |
| 216 | |
| 217 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 218 | @requires_forking |
nothing calls this directly
no test coverage detected