MCPcopy Index your code
hub / github.com/python/cpython / testSendMultiFrames

Method testSendMultiFrames

Lib/test/test_socket.py:2373–2378  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2371 self.cli.send(self.cf)
2372
2373 def testSendMultiFrames(self):
2374 cf, addr = self.s.recvfrom(self.bufsize)
2375 self.assertEqual(self.cf1, cf)
2376
2377 cf, addr = self.s.recvfrom(self.bufsize)
2378 self.assertEqual(self.cf2, cf)
2379
2380 def _testSendMultiFrames(self):
2381 self.cf1 = self.build_can_frame(0x07, b'\x44\x33\x22\x11')

Callers

nothing calls this directly

Calls 2

recvfromMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected