Skip Menu |

This queue is for tickets about the File-Extension CPAN distribution.

Report information
The Basics
Id: 128010
Status: new
Priority: 0/
Queue: File-Extension

People
Owner: Nobody in particular
Requestors: james2vegas [...] aim.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Data-Dumper shows in "Provides" marked as "Unauthorized"
If the { package Data::Dumper } block is required, the package line should be hidden from PAUSE by something like this

    package # hide from PAUSE
       Data::Dumper;  

Though ideally you shouldn't be changing Data::Dumper's package variables without localizing them (use vars doesn't), something like

    my $var = do {
       local $Data::Dumper::Terse = 1;
       Data::Dumper::Dumper( $x );
    };