in reply to Re^2: "use" vs "require"in thread "use" vs "require"
An alternative is to explicitely state all the imported functions in the use statement. For example, instead of saying
use Module; [download]
use Module qw( func1 func2 ); [download]