Subject: | URI thinks , isn't equivalent to %2C |
The code sample below outputs "not equivalent".
This is obviously incorrect.
{
use strict;
use URI;
my $uri1 = URI::->new("http://127.0.0.1/,");
my $uri2 = URI::->new("http://127.0.0.1/%2C");
print $uri1->eq($uri2) ? "equivalent\n" : "not equivalent\n";
}