Re: cvs commit: modperl-2.0/pod modperl_style.pod

2001-01-24 Thread Doug MacEachern
On Wed, 17 Jan 2001, Ask Bjoern Hansen wrote: > On 2 Jan 2001 [EMAIL PROTECTED] wrote: > > > =item Avoid inherting from certain modules > > > > Exporter > > To void inherting B > > > >instead of this: > > > > @MyClass::ISA = qw(Exporter); > > > >use this: > >

Re: cvs commit: modperl-2.0/pod modperl_style.pod

2001-01-17 Thread Ask Bjoern Hansen
On 2 Jan 2001 [EMAIL PROTECTED] wrote: > =item Avoid inherting from certain modules > > Exporter > To void inherting B > >instead of this: > > @MyClass::ISA = qw(Exporter); > >use this: > > *import = \&Exporter::import; Why? To get less obscure error mess