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 62675
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:30:47+00:00 2026-05-10T18:30:47+00:00

I have a package that I just made and I have an old-mode that

  • 0

I have a package that I just made and I have an ‘old-mode’ that basically makes it work like it worked before: importing everything into the current namespace. One of the nice things about having this as a package is that we no longer have to do that. Anyway, what I would like to do is have it so that whenever anyone does:

use Foo qw(:oldmode); 

I throw a warning that this is deprecated and that they should either import only what they need or just access functions with Foo->fun();

Any ideas on how to do this?

  • 1 1 Answer
  • 2 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. 2026-05-10T18:30:47+00:00Added an answer on May 10, 2026 at 6:30 pm

    Well, as you specifically state that you want to alarm in the cases of use Mod qw<:oldmode>; This works better:

    package Foo; use base qw<Exporter>; use Carp qw<carp>; ... sub import {      #if ( grep { $_ eq ':oldmode' } @_ ) { # Perl 5.8     if ( @_ ~~ ':oldmode' ) {              # Perl 5.10          carp( 'import called with :oldmode!' );     }     goto &{Exporter->can( 'import' )}; } 

    Thanks to Frew, for mentioning the Perl 5.10 smart match syntax. I’m learning all the ways to work Perl 5.10 into my code.

    Note: the standard way to use exporter in an import sub is to either manipulate $Exporter::ExportLevel or to call Foo->export_to_level( 1, @_ ); But I like the way above. It’s quicker and, I think, simpler.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an ETL package that writes data to the SQL Server. Data is
I have an SSIS package that queries data from a view using an SQL
I have written an SSIS package that essentially takes data from multiple sources and
I have a basic hosting package that gives me access to create a MySQL
I have an SSIS (2005) package that transforms some XML data and then imports
I have a function in a package that returns a REF CURSOR to a
I have a DTS (not SSIS) package that hasn't been touched in years that
I have the Execute SQL Script package that contains the script to insert about
I have an OLE DB Command component in an SSIS Package that runs an
In the current package that I am working on for a project I have

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.