This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sbt
Recipients amaury.forgeotdarc, larry, pitrou, sbt
Date 2012-07-06.15:54:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341590089.28.0.405569829292.issue15263@psf.upfronthosting.co.za>
In-reply-to
Content
Every use of _get_osfhandle() should be guarded by _Py_VerifyFd().  

Grepping through the source it seems that that is now true, but we could instead use

  #define _PY_GET_OSFHANDLE(fd) _Py_VerifyFd(fd) ? _get_osfhandle(fd) : INVALID_HANDLE_VALUE
History
Date User Action Args
2012-07-06 15:54:49sbtsetrecipients: + sbt, amaury.forgeotdarc, pitrou, larry
2012-07-06 15:54:49sbtsetmessageid: <1341590089.28.0.405569829292.issue15263@psf.upfronthosting.co.za>
2012-07-06 15:54:48sbtlinkissue15263 messages
2012-07-06 15:54:48sbtcreate