Please also close DATA at the same time so that you aren't wasting one of my few available file handles by keeping one open in your module that you will never use again.

Also note that you can't access DATA inside of a BEGIN block because the compiler hasn't seen the __DATA__ token yet and so doesn't know what offset to let you start reading from and so doesn't make a DATA handle available yet.

my $data; { local $/; $data = <DATA>; close DATA; }

You might be able to turn that block into an INIT or a CHECK block, but I've never had a need for such so I won't try to make a recommendation based on ignorance.

                - tye

In reply to Re^2: __DATA__ only one time (close !BEGIN) by tye
in thread __DATA__ only one time by michaelg

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.