The perllexwarn document describes how to enable and disable specific categories of warnings, and it shows the category tree that is used for classifying the warnings. However, sometimes it takes a little bit of trial and error to figure out the category for a specific warning. For example, today I saw this warning for the first time:
Value of <HANDLE> construct can be "0"; test with defined() at -e line 1

This comes from a line like this:

$s = <$fh> or die;

Let's say that I want to disable this type of warning. Which type is it? Since none of the categories seemed particularly relevant, I decided to try no warnings qw(misc), and it worked! Ok, so the categories are reasonably intuitive. But has anyone compiled a list of warnings by category? That would be helpful for the more ambiguous cases, or for educational purposes.


In reply to A list of warnings by category? by itub

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.