home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CLIX - Fazer Clix Custa Nix
/
CLIX-CD.cdr
/
mac
/
lib
/
auto
/
LWP
/
UserAgent
/
clone.al
< prev
next >
Wrap
Text File
|
1997-12-13
|
355b
|
16 lines
# NOTE: Derived from :lib:LWP:UserAgent.pm. Changes made here will be lost.
package LWP::UserAgent;
sub clone
{
my $self = shift;
my $copy = bless { %$self }, ref $self; # copy most fields
# elements that are references must be handled in a special way
$copy->{'no_proxy'} = [ @{$self->{'no_proxy'}} ]; # copy array
$copy;
}
1;