in reply to Re: package new
in thread package new

The package code looks like the following:
package Dir::Pkg; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); require Exporter; @ISA = qw(Exporter); @EXPORT = qw(sub1 sub2); $VERSION = 1.00; use SomeOtherModule; sub1 { } sub2 { }

I cannot see any other sub classing. Let me check if I am missing something.

Thanks