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 filip.zyzniewski
Recipients filip.zyzniewski
Date 2012-12-07.13:33:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354887230.33.0.111304282824.issue16635@psf.upfronthosting.co.za>
In-reply-to
Content
When using a Python script as a unix pipe filter with its stdout redirected to a file:

python script.py > /nfs/foo

user is not notified of some writing problems on NFS, because these are sometimes reported on close(), and the interpreter never does neither close(1) nor close(2):

$ strace -eclose python -c '' 2>&1 | grep  'close([12])'
$
History
Date User Action Args
2012-12-07 13:33:50filip.zyzniewskisetrecipients: + filip.zyzniewski
2012-12-07 13:33:50filip.zyzniewskisetmessageid: <1354887230.33.0.111304282824.issue16635@psf.upfronthosting.co.za>
2012-12-07 13:33:50filip.zyzniewskilinkissue16635 messages
2012-12-07 13:33:50filip.zyzniewskicreate