> Nathan Wiger <[EMAIL PROTECTED]> suggests that we create an C<import>
> keyword (and I assume an C<unimport> keyword as well) that calls
> C<import Module LIST>.  The author of this RFC would rather not add
> new keywords.

I don't see how you'd be able to do this, then. :-)

Remember, right now

   new Module        # calls Module->new
   import Module     # calls Module->import
  
This is 100% automatic. The only way around it would be to have a core
keyword/function do something like this:

   sub import {
      my $self = shift;
      $self->IMPORT(@_);
   }

It does appear that my original email disappeared from
mail-archives.com. Oh well. :-(

-Nate

Reply via email to