Returns True if provided address in printable format belongs to allocated Multicast address space (224.0.0.0/4).
(str)
| 849 | |
| 850 | |
| 851 | def in4_ismaddr(str): |
| 852 | # type: (str) -> bool |
| 853 | """ |
| 854 | Returns True if provided address in printable format belongs to |
| 855 | allocated Multicast address space (224.0.0.0/4). |
| 856 | """ |
| 857 | return in4_isincluded(str, "224.0.0.0", 4) |
| 858 | |
| 859 | |
| 860 | def in4_ismlladdr(str): |
no test coverage detected
searching dependent graphs…