1N/Apackage CPAN::Nox;
1N/Ause strict;
1N/Ause vars qw($VERSION @EXPORT);
1N/A
1N/ABEGIN{
1N/A $CPAN::Suppress_readline=1 unless defined $CPAN::term;
1N/A}
1N/A
1N/Ause base 'Exporter';
1N/Ause CPAN;
1N/A
1N/A$VERSION = "1.03";
1N/A$CPAN::META->has_inst('Digest::MD5','no');
1N/A$CPAN::META->has_inst('LWP','no');
1N/A$CPAN::META->has_inst('Compress::Zlib','no');
1N/A@EXPORT = @CPAN::EXPORT;
1N/A
1N/A*AUTOLOAD = \&CPAN::AUTOLOAD;
1N/A
1N/A1;
1N/A
1N/A__END__
1N/A
1N/A=head1 NAME
1N/A
1N/ACPAN::Nox - Wrapper around CPAN.pm without using any XS module
1N/A
1N/A=head1 SYNOPSIS
1N/A
1N/AInteractive mode:
1N/A
1N/A perl -MCPAN::Nox -e shell;
1N/A
1N/A=head1 DESCRIPTION
1N/A
1N/AThis package has the same functionality as CPAN.pm, but tries to
1N/Aprevent the usage of compiled extensions during its own
1N/Aexecution. Its primary purpose is a rescue in case you upgraded perl
1N/Aand broke binary compatibility somehow.
1N/A
1N/A=head1 SEE ALSO
1N/A
1N/ACPAN(3)
1N/A
1N/A=cut
1N/A