Home
last modified time | relevance | path

Searched refs:IPv4Interface (Results 1 – 8 of 8) sorted by relevance

/external/python/ipaddress/
Dtest_ipaddress.py505 factory = ipaddress.IPv4Interface
710 v4intf = ipaddress.IPv4Interface(1)
724 v4intf2 = ipaddress.IPv4Interface(2)
856 self.ipv4_interface = ipaddress.IPv4Interface('1.2.3.4/24')
866 repr(ipaddress.IPv4Interface('1.2.3.4'))))
925 self.assertEqual(ipaddress.IPv4Interface(('192.0.2.1', 24)),
926 ipaddress.IPv4Interface('192.0.2.1/24'))
927 self.assertEqual(ipaddress.IPv4Interface((3221225985, 24)),
928 ipaddress.IPv4Interface('192.0.2.1/24'))
1056 ipaddress.IPv4Interface(16909060)._ip)
[all …]
Dipaddress.py229 return IPv4Interface(address)
1480 class IPv4Interface(IPv4Address): class
/external/python/cpython3/Lib/test/
Dtest_ipaddress.py656 factory = ipaddress.IPv4Interface
892 v4intf = ipaddress.IPv4Interface(1)
912 v4intf2 = ipaddress.IPv4Interface(2)
1073 self.ipv4_interface = ipaddress.IPv4Interface('1.2.3.4/24')
1089 repr(ipaddress.IPv4Interface('1.2.3.4')))
1153 self.assertEqual(ipaddress.IPv4Interface(('192.0.2.1', 24)),
1154 ipaddress.IPv4Interface('192.0.2.1/24'))
1155 self.assertEqual(ipaddress.IPv4Interface((3221225985, 24)),
1156 ipaddress.IPv4Interface('192.0.2.1/24'))
1288 ipaddress.IPv4Interface(16909060)._ip)
[all …]
/external/python/cpython3/Doc/library/
Dipaddress.rst31 ip_network, IPv4Address, IPv4Interface, IPv4Network,
70 Return an :class:`IPv4Interface` or :class:`IPv6Interface` object depending
853 .. class:: IPv4Interface(address)
859 :class:`IPv4Interface` is a subclass of :class:`IPv4Address`, so it inherits
867 >>> interface = IPv4Interface('192.0.2.5/24')
875 >>> interface = IPv4Interface('192.0.2.5/24')
883 >>> interface = IPv4Interface('192.0.2.5/24')
891 >>> interface = IPv4Interface('192.0.2.5/24')
899 >>> interface = IPv4Interface('192.0.2.5/24')
921 :class:`IPv4Interface`.
/external/python/cpython3/Lib/
Dipaddress.py108 return IPv4Interface(address)
1430 class IPv4Interface(IPv4Address): class
/external/python/cpython3/Doc/howto/
Dipaddress.rst148 IPv4Interface('192.0.2.1/24')
/external/python/cpython3/Misc/NEWS.d/
D3.11.0b1.rst1894 Add tests for :class:`ipaddress.IPv4Interface` and
D3.10.0a1.rst37 The __hash__() methods of ipaddress.IPv4Interface and