in reply to Re^4: from 5.8 to 5.10
in thread from 5.8 to 5.10
(The BEGINs are necessary because use statements are implicitly wrapped in BEGINs themselves.) If you don't see About to use b, then you'll know that the error was caused somewhere in the course of executing use a.BEGIN { warn "About to use a"; } use a; BEGIN { warn "About to use b"; } use b;
UPDATE: On further reading (and a bit of clumsy line-counting), it looks like the error is being thrown on the DBI->connect line. I don't have DBI installed, so can't test; but maybe someone else knows whether this method might try to use B::Bytecode for some reason?
|
|---|