This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[differences between cumulative patch application and perl-5.003_97c]
[perl5.git] / lib / CPAN / Nox.pm
1 BEGIN{$CPAN::Suppress_readline=1 unless defined $CPAN::term;}
2
3 use CPAN;
4
5 $CPAN::META->hasMD5(0);
6 $CPAN::META->hasLWP(0);
7 @EXPORT = @CPAN::EXPORT;
8
9 *AUTOLOAD = \&CPAN::AUTOLOAD;
10
11 =head1 NAME
12
13 CPAN::Nox - Wrapper around CPAN.pm without using any XS module
14
15 =head1 SYNOPSIS
16
17 Interactive mode:
18
19   perl -MCPAN::Nox -e shell;
20
21 =head1 DESCRIPTION
22
23 This package has the same functionality as CPAN.pm, but tries to
24 prevent the usage of compiled extensions during it's own
25 execution. It's primary purpose is a rescue in case you upgraded perl
26 and broke binary compatibility somehow.
27
28 =head1  SEE ALSO
29
30 CPAN(3)
31
32 =cut
33