in reply to lwp HTTP::Request question
Not sure if you tried that already :-).
Also, here is line 62 from HTTP::Request:
-- Can't never could do anything, so give me and inch, I'll make it a mile.sub new { my($class, $method, $uri, $header, $content) = @_; my $self = $class->SUPER::new($header, $content); # L. 62 $self->method($method); $self->uri($uri); $self; }
|
|---|