(self)
| 6677 | self.assertEqual(org.proto, other.proto) |
| 6678 | |
| 6679 | def testShareLocal(self): |
| 6680 | data = self.serv.share(os.getpid()) |
| 6681 | s = socket.fromshare(data) |
| 6682 | try: |
| 6683 | self.compareSockets(self.serv, s) |
| 6684 | finally: |
| 6685 | s.close() |
| 6686 | |
| 6687 | def testTypes(self): |
| 6688 | families = [socket.AF_INET, socket.AF_INET6] |
nothing calls this directly
no test coverage detected