Help for this page

Select Code to Download


  1. or download this
            my $cnt = keys %{$self->{is_tested}};
            my $newenv = join $Config::Config{path_sep}, @dirs, @env;
    ...
                                     "for '%s'\n", $cnt, length($newenv), 
    +$for)
                                    );
            $ENV{PERL5LIB} = $newenv;
    
  2. or download this
    #-> sub CPAN::is_tested
    sub is_tested {
        my($self,$what,$when) = @_;
    ...
        }
        $self->{is_tested}{$what} = $when;
    }
    
  3. or download this
    sub _list_sorted_descending_is_tested {
        my($self) = @_;
        my $foul = 0;
    ...
            return @sorted;
        }
    }
    
  4. or download this
    #-> sub CPAN::reset_tested
    # forget all distributions tested -- resets what gets included in PERL
    +5LIB
    sub reset_tested {
        my ($self) = @_;
        $self->{is_tested} = {};
    }