(self)
| 244 | q.put_nowait(4) |
| 245 | |
| 246 | def test_shutdown_empty(self): |
| 247 | q = self.type2test() |
| 248 | q.shutdown() |
| 249 | with self.assertRaises(self.queue.ShutDown): |
| 250 | q.put("data") |
| 251 | with self.assertRaises(self.queue.ShutDown): |
| 252 | q.get() |
| 253 | |
| 254 | def test_shutdown_nonempty(self): |
| 255 | q = self.type2test() |
nothing calls this directly
no test coverage detected