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