(self)
| 6656 | p.join() |
| 6657 | |
| 6658 | def testShareLength(self): |
| 6659 | data = self.serv.share(os.getpid()) |
| 6660 | self.assertRaises(ValueError, socket.fromshare, data[:-1]) |
| 6661 | self.assertRaises(ValueError, socket.fromshare, data+b"foo") |
| 6662 | |
| 6663 | def compareSockets(self, org, other): |
| 6664 | # socket sharing is expected to work only for blocking socket |
nothing calls this directly
no test coverage detected