in reply to Re^5: open undef
in thread open undef

ForgotPasswordAgain quoted the applicable documentation. Based on this quote, I would expect all three cases to create the temporary file. I agree that only the third case should. The quoted specification should be changed to reflect this.
Bill

Replies are listed 'Best First'.
Re^7: open undef
by ikegami (Patriarch) on Aug 08, 2018 at 02:15 UTC

    The documentation says that using "undef" (not "an undefined value") creates the temporary file, but the first two cases don't use undef. As such, according to the documentation, only the third case should create the temporary file.

      Got it! I missed the significance of the underscore under "undef" in the document.
      Bill