The last comment inside your "Readmore" section was:
it seems that it would be the same whether or not there was a '+' before the '<' or '>'

That's the problem! The man page for open only talks about using "+>" or "+<" as the "special 3-arg case with the third arg being undef" in order to establish read/write access to an anonymous temp file. This makes sense, because the temp file is going to vanish as soon as the file handle goes out of scope, and only the portion of the script where the handle is in scope can see that file, and write and then read data there. That's cool.

The man page does not describe any sort of "special 3-arg case with the third arg being undef" when there is just a bare "<" or ">" as the 2nd arg -- because this sort of usage makes no sense: why open an anonymous temporary file (non-existent outside the scope of the file handle, unknowable and inaccessible to any other process) for only read access, or only write access??? That's pointless!

So the fact that perl seems to be treating "+>" the same as ">" in this case (and likewise for "<") looks very much like A BUG.

Your discussion of the perl source code was a fair bit over my head (if you made any mistakes, I wouldn't know), but I thank you for it, just the same.


In reply to Re^2: 3-arg open() does not give warnings!? by graff
in thread 3-arg open() does not give warnings!? by graff

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.