(self)
| 4146 | self.assertLess(len(cmsg_data), SIZEOF_INT) |
| 4147 | |
| 4148 | def _testFDPassPartialInt(self): |
| 4149 | self.sendAncillaryIfPossible( |
| 4150 | MSG, |
| 4151 | [(socket.SOL_SOCKET, |
| 4152 | socket.SCM_RIGHTS, |
| 4153 | array.array("i", [self.badfd]).tobytes()[:-1])]) |
| 4154 | |
| 4155 | @requireAttrs(socket, "CMSG_SPACE") |
| 4156 | def testFDPassPartialIntInMiddle(self): |
nothing calls this directly
no test coverage detected