Re: lwp-0.03 released

Andreas Koenig (k@anna.mind.de)
Mon, 14 Aug 1995 21:04:19 +0200


  >From: "Lincoln D. Stein" <lstein@genome.wi.mit.edu>
  >
  >I've updated Base.pm with the patch that Andreas posted.  Warning: Base.pm
  >now requires URI::URL version 3.02 to work!

Thanks, and another gotcha appeared during the day.

--- Request.pm.2.3    Mon Aug 14 20:28:24 1995
+++ Request.pm  Mon Aug 14 20:30:29 1995
@@ -6,7 +6,7 @@
 
 use Carp;
 use Exporter;
-use URI::URL  qw(uri_escape uri_unescape);
+use URI::Escape qw(uri_escape uri_unescape);
 use CGI::Base qw(SendHeaders html_escape);
 
 @ISA = qw(Exporter);


Personally I would not import anymore and fully qualify the two calls
to uri_* instead. But for brev and clarity I keep it simple.

  >
  >Lincoln

andreas