home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / auto / LWP / UserAgent / clone.al < prev    next >
Text File  |  1997-12-13  |  355b  |  16 lines

  1. # NOTE: Derived from :lib:LWP:UserAgent.pm.  Changes made here will be lost.
  2. package LWP::UserAgent;
  3.  
  4. sub clone
  5. {
  6.     my $self = shift;
  7.     my $copy = bless { %$self }, ref $self;  # copy most fields
  8.  
  9.     # elements that are references must be handled in a special way
  10.     $copy->{'no_proxy'} = [ @{$self->{'no_proxy'}} ];  # copy array
  11.  
  12.     $copy;
  13. }
  14.  
  15. 1;
  16.