Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_ipaddress.py860 self.assertFactoryError(ipaddress.ip_interface, "interface")
1275 ipaddress.ip_interface(b'\x01\x02\x03\x04')._ip)
1279 ipaddress.ip_interface(
1934 self.assertTrue(ipaddress.ip_interface('1.1.1.1/24') ==
1935 ipaddress.ip_interface('1.1.1.1/24'))
1936 self.assertTrue(ipaddress.ip_interface('1.1.1.1/16') <
1937 ipaddress.ip_interface('1.1.1.1/24'))
1938 self.assertTrue(ipaddress.ip_interface('1.1.1.1/24') <
1939 ipaddress.ip_interface('1.1.1.2/24'))
1940 self.assertTrue(ipaddress.ip_interface('1.1.1.2/16') <
[all …]
/third_party/python/Doc/howto/
Dipaddress.rst147 >>> ipaddress.ip_interface('192.0.2.1/24')
149 >>> ipaddress.ip_interface('2001:db8::1/96')
174 >>> host4 = ipaddress.ip_interface('192.0.2.1/24')
177 >>> host6 = ipaddress.ip_interface('2001:db8::1/96')
/third_party/python/Doc/tools/
Dsusp-ignored.csv68 howto/ipaddress,,:db8,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
69 howto/ipaddress,,::,>>> host6 = ipaddress.ip_interface('2001:db8::1/96')
78 howto/ipaddress,,:db8,>>> ipaddress.ip_interface('2001:db8::1/96')
79 howto/ipaddress,,::,>>> ipaddress.ip_interface('2001:db8::1/96')
/third_party/python/Misc/NEWS.d/
D3.6.2rc1.rst212 Fixed comparison check for ipaddress.ip_interface objects. Patch by Sanjay
D3.5.4rc1.rst352 Fixed comparison check for ipaddress.ip_interface objects. Patch by Sanjay
D3.7.0a1.rst3030 Fixed comparison check for ipaddress.ip_interface objects. Patch by Sanjay
/third_party/python/Lib/
Dipaddress.py88 def ip_interface(address): function
/third_party/python/Doc/library/
Dipaddress.rst68 .. function:: ip_interface(address)