For the strings 'http:' and 'http:/' the method se_host() returns 4
warnings. 'http' and 'http://' work as expected though.
perl -E'use URI::ParseSearchString; $UP=URI::ParseSearchString->new();
say $UP->se_host("http:")'
Use of uninitialized value $host in pattern match (m//) at
lib/perl5//URI/ParseSearchString.pm line 475.
Use of uninitialized value $host in hash element at
lib/perl5//URI/ParseSearchString.pm line 482.
Use of uninitialized value $host in index at
lib/perl5//URI/ParseSearchString.pm line 483.
Use of uninitialized value $hostname in hash element at
lib/perl5//URI/ParseSearchString.pm line 538.
mtm