in reply to Re^3: XML::Simple Issues
in thread XML::Simple Issues
When I run the perl script you gave me I get the message /etc/perl/XML/Simple.pm the first 20 lines of the file are as follows
package LWP::Simple; use strict; use vars qw($ua %loop_check $FULL_LWP @EXPORT @EXPORT_OK $VERSION); require Exporter; @EXPORT = qw(get head getprint getstore mirror); @EXPORT_OK = qw($ua); # I really hate this. I was a bad idea to do it in the first place. # Wonder how to get rid of it??? (It even makes LWP::Simple 7% slower # for trivial tests) use HTTP::Status; push(@EXPORT, @HTTP::Status::EXPORT); $VERSION = "5.810"; $FULL_LWP++ if grep {lc($_) eq "http_proxy"} keys %ENV;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: XML::Simple Issues
by Anonymous Monk on Dec 30, 2010 at 04:43 UTC | |
by tigerstorms (Initiate) on Dec 31, 2010 at 19:14 UTC |