in reply to How can I prevent a module from being added to the %INC hash?
BEGIN { use strict; use warnings; use Carp; use Digest::MD5; our %inc_copy = %INC; }; use Net::FTP; %INC = %inc_copy; for(keys(%INC)) {print "$_: $INC{$_}\n"}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can I prevent a module from being added to the %INC hash?
by jacques (Priest) on Oct 04, 2006 at 03:29 UTC | |
by syphilis (Archbishop) on Oct 04, 2006 at 04:31 UTC | |
by jacques (Priest) on Oct 04, 2006 at 07:08 UTC | |
by syphilis (Archbishop) on Oct 04, 2006 at 07:49 UTC |