I think you are seeing different behaivor than you think you are. The above code looks like it might be used to, for lack of a better term, "functionally subclass" a module. By that, I mean that the "subclass" exports everything that the "base class" does, in addition to its own exports. For instance, in the LWP::Simple module, the "use anything;" in question happens to be "use Http::Status". Http::Status happens to have a huge list of default Exports, so the author uses the above code in order to save his code from repetition. (which is A Bad Thing)

As for the behaivor that you think you are seeing, the problem is that diagnostics isn't lexical like strict is. It operates as a global switch; either diagnostics is on or it isn't. (You can use the kludgy enable and disable to acheive lexical behaivor). However, strict is lexical, which is why nothing happend. (Besides, diagnostics mostly operates at runtime, and strict 'vars' operates at compile time. By the time the above code is run, it is already runtime, and so it would be tough for strict 'vars' to have an effect (-: )

So, in short; yes, my solution is "way better." (-:


In reply to Re: Re: Re: Re: How do I make one package use a module from another package? by jryan
in thread How do I make one package use a module from another package? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.