Is ipaddr an IPv4 loopback address?
( ipaddr )
| 855 | |
| 856 | @staticmethod |
| 857 | def isLoopback( ipaddr ): |
| 858 | "Is ipaddr an IPv4 loopback address?" |
| 859 | return ipaddr.startswith( '127.' ) |
| 860 | |
| 861 | # pylint: disable=arguments-differ,signature-differs |
| 862 | def addController( self, *args, **kwargs ): |