You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are some scenarios where is_url shows unexpected behaviour:
http://google.abcdefghi is valid but is_url states False in its test suite- constraining TLD to length 6 but TLD length specified by RFC 1034 is 63 octets. Real TLDs available here of length >6 http://data.iana.org/TLD/tlds-alpha-by-domain.txt
Hello,
Here are some scenarios where
is_url
shows unexpected behaviour:http://google.abcdefghi
is valid butis_url
statesFalse
in its test suite- constraining TLD to length 6 but TLD length specified by RFC 1034 is 63 octets. Real TLDs available here of length >6 http://data.iana.org/TLD/tlds-alpha-by-domain.txthttp://www.foo.bar./
is valid as per https://www.w3.org/Addressing/URL/url-spec.txt#page13 whileis_url
returnsFalse
The text was updated successfully, but these errors were encountered: