in reply to Re: import not found
in thread import not found

Thanks a lot for the explanation!
AUTOLOAD is a sledgehammer that can make code more brittle than it should be. With no context I don't know whether that is true in your case.
I start to believe that it is true in my case...

-- 
Ronald Fischer <ynnor@mm.st>

Replies are listed 'Best First'.
Re^3: import not found
by tilly (Archbishop) on Jan 27, 2011 at 16:59 UTC
    Incidentally a random tip. If you want Exporter to inject a function into your space you can
    use Exporter qw(import);
    rather than inheriting from Exporter.