Help for this page

Select Code to Download


  1. or download this
    sub clone
    {
    ...
        my $copy = bless { %$self }, ref $self;  # copy most fields
    
        delete $copy->{handlers};
    
  2. or download this
        # copy any plain arrays and hashes; known not to need recursive co
    +py
        for my $k (qw(proxy no_proxy requests_redirectable)) {
    ...
    
        $copy;
    }