in reply to Re^2: What happens when you load the same module twice?
in thread What happens when you load the same module twice?
File::Basename->import() won't be called, as Perl will try to call File::BaseName->import(), which doesn't exists so Perl will silently go on
You're describing the current behavior. His change, whatever other implications it may have, would not affect that.
Update: to clarify my statement for Anonymous Monk, I meant that adding the lc $name doesn't change whether use File::BaseName would call the right import routine, or not.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: What happens when you load the same module twice?
by Anonymous Monk on Feb 11, 2005 at 09:31 UTC |