Skip Menu |

This queue is for tickets about the libwww-perl CPAN distribution.

Report information
The Basics
Id: 83026
Status: resolved
Priority: 0/
Queue: libwww-perl

People
Owner: Nobody in particular
Requestors: victor [...] vsespb.ru
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 6.04
Fixed in: (no value)



Subject: is_protocol_supported documented only as instance method
is_protocol_supported documented only as instance method, however it works as class method LWP::UserAgent->is_protocol_supported("https") there seems to be special support for class method. if(ref($self) and $x = $self->protocols_allowed) { return 0 unless grep lc($_) eq $scheme, @$x; } Would be good if you document it as class method as well, as I use it in my application and I am not sure if it will be removed in the future or no.