File: LWP.pm

package info (click to toggle)
libxml-feed-perl 0.12-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 292 kB
  • ctags: 251
  • sloc: perl: 3,011; xml: 300; makefile: 45; sh: 33
file content (17 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#line 1
#
# $Id: LWP.pm,v 1.149 2005/12/08 12:06:22 gisle Exp $

package LWP;

$VERSION = "5.805";
sub Version { $VERSION; }

require 5.005;
require LWP::UserAgent;  # this should load everything you need

1;

__END__

#line 658