(self)
| 217 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 218 | @requires_forking |
| 219 | def test_ForkingUDPServer(self): |
| 220 | with simple_subprocess(self): |
| 221 | self.run_server(socketserver.ForkingUDPServer, |
| 222 | socketserver.DatagramRequestHandler, |
| 223 | self.dgram_examine) |
| 224 | |
| 225 | @requires_unix_sockets |
| 226 | @unittest.skipIf(test.support.is_apple_mobile and test.support.on_github_actions, |
nothing calls this directly
no test coverage detected