mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #18308: don't take the scope ID into account when comparing IPv6
addresses.
This commit is contained in:
commit
19361a2046
1 changed files with 5 additions and 1 deletions
|
@ -3312,7 +3312,11 @@ class RecvmsgIntoUDPTest(RecvmsgIntoTests, SendrecvmsgUDPTestBase):
|
|||
class SendrecvmsgUDP6TestBase(SendrecvmsgDgramFlagsBase,
|
||||
SendrecvmsgConnectionlessBase,
|
||||
ThreadedSocketTestMixin, UDP6TestBase):
|
||||
pass
|
||||
|
||||
def checkRecvmsgAddress(self, addr1, addr2):
|
||||
# Called to compare the received address with the address of
|
||||
# the peer, ignoring scope ID
|
||||
self.assertEqual(addr1[:-1], addr2[:-1])
|
||||
|
||||
@requireAttrs(socket.socket, "sendmsg")
|
||||
@unittest.skipUnless(support.IPV6_ENABLED, 'IPv6 required for this test.')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue