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 terry.reedy
Recipients hanno, terry.reedy
Date 2014-03-14.21:19:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394831959.25.0.116624692857.issue20866@psf.upfronthosting.co.za>
In-reply-to
Content
Your example is ambiguous at to which of two pipings causes the problem. First you cat a large file into the script, which reads it in its entirety with "data = sys.stdin.read()". If that causes the segfault, they everything that follows is irrelevant. If that works and it is the second piping out that is the problem, then the rigamarole with creating an external file and piping it in irrelevant.  "data = '0123456789' * 10000" would be sufficient. 

In 2.6/7, os.popen is deprecated in favor of using subprocess. In 3.x, popen was, I have been told, re-written to use subprocess. So if popen is the problem here, then the fix is to use subprocess explicitly in 2.7.
History
Date User Action Args
2014-03-14 21:19:19terry.reedysetrecipients: + terry.reedy, hanno
2014-03-14 21:19:19terry.reedysetmessageid: <1394831959.25.0.116624692857.issue20866@psf.upfronthosting.co.za>
2014-03-14 21:19:19terry.reedylinkissue20866 messages
2014-03-14 21:19:18terry.reedycreate