Ohad Livne

Results 1 issues of Ohad Livne

For URLs using IPv4 addresses, the host address gets extracted correctly using `.domain` but `.fqdn` gives the empty string: ```python >>> tldextract.extract("https://127.0.0.1:1234/foobar").domain '127.0.0.1' >>> tldextract.extract("https://127.0.0.1:1234/foobar").fqdn '' ``` For URLs using...