summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm')
-rw-r--r--Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm35
1 files changed, 23 insertions, 12 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm b/Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm
index d908cf8f180..0d5ce9a96c8 100644
--- a/Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm
+++ b/Master/tlpkg/tlperl/site/lib/Net/HTTP/NB.pm
@@ -1,13 +1,9 @@
package Net::HTTP::NB;
-
+$Net::HTTP::NB::VERSION = '6.13';
use strict;
-use vars qw($VERSION @ISA);
-
-$VERSION = "6.09";
-$VERSION = eval $VERSION;
+use warnings;
-require Net::HTTP;
-@ISA=qw(Net::HTTP);
+use base 'Net::HTTP';
sub can_read {
return 1;
@@ -54,12 +50,18 @@ sub read_entity_body {
1;
-__END__
+=pod
+
+=encoding UTF-8
=head1 NAME
Net::HTTP::NB - Non-blocking HTTP client
+=head1 VERSION
+
+version 6.13
+
=head1 SYNOPSIS
use Net::HTTP::NB;
@@ -100,11 +102,20 @@ the value -1 is returned.
L<Net::HTTP>
-=head1 COPYRIGHT
+=head1 AUTHOR
-Copyright 2001 Gisle Aas.
+Gisle Aas <gisle@activestate.com>
-This library is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2001-2017 by Gisle Aas.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
=cut
+
+__END__
+
+#ABSTRACT: Non-blocking HTTP client
+