Re: modperl : how resolve conflict funtion name in different package

2003-01-16 Thread Steve Piner
Ouimet, Pierre wrote: hi! I have that (by exemple ) : package pack1.pm sub get_data { # ... } package pack2.pm sub get_data { # same name, but doing other thing } I don't use export and I have conflict with this 2 package in log file (because it detect same

Re: modperl : how resolve conflict funtion name in different package

2003-01-16 Thread Stas Bekman
Ouimet, Pierre wrote: hi! I have that (by exemple ) : package pack1.pm sub get_data { # ... } package pack2.pm sub get_data { # same name, but doing other thing } I don't use export and I have conflict with this 2 package in log file (because it detect same function) In