Lines Matching refs:IPv4Interface

560             # IPv4Network has prefixlen, but IPv4Interface doesn't.
561 # Should we add it to IPv4Interface too? (bpo-36392)
641 factory = ipaddress.IPv4Interface
708 # Should we add it to IPv4Interface too? (bpo-36392)
877 v4intf = ipaddress.IPv4Interface(1)
897 v4intf2 = ipaddress.IPv4Interface(2)
1058 self.ipv4_interface = ipaddress.IPv4Interface('1.2.3.4/24')
1060 #self.ipv4_hostmask = ipaddress.IPv4Interface('10.0.0.1/0.255.255.255')
1073 self.assertEqual("IPv4Interface('1.2.3.4/32')",
1074 repr(ipaddress.IPv4Interface('1.2.3.4')))
1138 self.assertEqual(ipaddress.IPv4Interface(('192.0.2.1', 24)),
1139 ipaddress.IPv4Interface('192.0.2.1/24'))
1140 self.assertEqual(ipaddress.IPv4Interface((3221225985, 24)),
1141 ipaddress.IPv4Interface('192.0.2.1/24'))
1273 ipaddress.IPv4Interface(16909060)._ip)
1349 ipv4_zero_netmask = ipaddress.IPv4Interface('1.2.3.4/0')
1389 ipaddress.IPv4Interface('0.0.0.0/0').network.supernet(),
1631 self.assertIn(ipaddress.IPv4Interface('1.2.3.128/25'),
1633 self.assertNotIn(ipaddress.IPv4Interface('1.2.4.1/24'),
1667 ipaddress.IPv4Interface('1.2.3.4/24'))
1669 ipaddress.IPv4Interface('1.2.3.4/23'))
1683 ipaddress.IPv4Interface('1.2.3.4/23'))
1697 ipaddress.IPv4Interface('1.2.3.4/23'))
1704 ipaddress.IPv4Interface('1.2.3.4/24'))
1706 ipaddress.IPv4Interface('1.2.3.4/23'))
1726 ipaddress.IPv4Interface('1.2.3.4/23'))
1746 ipaddress.IPv4Interface('1.2.3.4/23'))
1758 self.assertEqual(str(ipaddress.IPv4Interface(
1768 self.assertEqual(str(ipaddress.IPv4Interface('1.2.3.4/0.0.0.0')),
1791 #ip5 = ipaddress.IPv4Interface('1.1.1.4/30')
1792 #ip6 = ipaddress.IPv4Interface('1.1.1.4/30')
2067 ipv4 = ipaddress.IPv4Interface('0.0.0.0/0')
2135 ipv4 = ipaddress.IPv4Interface(ipv4_string)
2178 self.assertEqual(ipaddress.IPv4Interface('255.254.253.252').packed,
2626 # issue41004 Hash collisions in IPv4Interface and IPv6Interface
2628 ipv4_address1 = ipaddress.IPv4Interface("1.2.3.4")
2629 ipv4_address2 = ipaddress.IPv4Interface("2.3.4.5")
2632 # issue41004 Hash collisions in IPv4Interface and IPv6Interface