Returns True if provided address in printable format belongs to allocated Multicast address space (ff00::/8).
(str)
| 785 | |
| 786 | |
| 787 | def in6_ismaddr(str): |
| 788 | # type: (str) -> bool |
| 789 | """ |
| 790 | Returns True if provided address in printable format belongs to |
| 791 | allocated Multicast address space (ff00::/8). |
| 792 | """ |
| 793 | return in6_isincluded(str, 'ff00::', 8) |
| 794 | |
| 795 | |
| 796 | def in6_ismnladdr(str): |
no test coverage detected
searching dependent graphs…