Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 204267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:27:08+00:00 2026-05-11T17:27:08+00:00

I have some Perl modules which exports various functions. (We haven’t used @EXPORT in

  • 0

I have some Perl modules which exports various functions. (We haven’t used @EXPORT in new modules for some years, but have retained it for compatibility with old scripts.)

I have renamed a number of functions and methods to change to a consistent naming policy, and thought that then adding a list of lines like

*directory_error      = *directoryError;

at the end of the module would just alias the old name to the new.

This works, except when the old name is exported, and a calling script calls the function with an unqualified name: in this case, it reports that the subroutine is not found (in the calling module).

I guess that what is happening is that Exporter prepares the list in a BEGIN, when the alias has not been created; but I tried putting the typeglob assignment in a BEGIN block and that didn’t help.

I’ve tried AUTOLOAD, but of course that does not make the name available in the calling context. Of course I could write a series of wrapper functions, but that is tedious. It’s possible I could generate wrapper functions automatically, though I’m not sure how.

Any suggestions of a neat way of handling this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T17:27:08+00:00Added an answer on May 11, 2026 at 5:27 pm

    The following works for me. This seems to be what you’re describing; you must have made a mistake somewhere.

    Main script:

    use strict;
    use warnings;
    use Bar;
    
    baz();
    

    Module:

    package Bar;
    use strict;
    use warnings;
    
    require Exporter;
    our @ISA    = qw(Exporter);
    our @EXPORT = qw(baz);
    
    sub Baz { print "Baz() here\n" }
    
    *baz = *Baz;
    
    1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing some tests in Perl which have a fair amount of set up.
I have been doing some OO Perl programming and I was wondering: which is
Lot's of ways to set your modules $VERSION in perl, some even have advantages.
I'm using cpanm to install Perl modules, but I can't install Thread::Pool for some
i have a input tag which is non editable, but some times i need
I have some Perl code which has file glob operation. $file1 = @ARGV[0]; @res1
I have some questions about Perl's map function. Specifically: How does %hash = map
I have some issue with a Perl script. It modifies the content of a
I currently use Strawberry Perl as my primary Perl distribution. However, I have some
I have a bunch of scripts - some in perl and some in bash

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.