Message213590
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. |
|
Date |
User |
Action |
Args |
2014-03-14 21:19:19 | terry.reedy | set | recipients:
+ terry.reedy, hanno |
2014-03-14 21:19:19 | terry.reedy | set | messageid: <1394831959.25.0.116624692857.issue20866@psf.upfronthosting.co.za> |
2014-03-14 21:19:19 | terry.reedy | link | issue20866 messages |
2014-03-14 21:19:18 | terry.reedy | create | |
|