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 matrixise
Recipients epsolos, eryksun, matrixise
Date 2018-10-24.20:34:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540413267.35.0.788709270274.issue35060@psf.upfronthosting.co.za>
In-reply-to
Content
My script:

#!/usr/bin/env python
import pathlib
import subprocess

output = subprocess.check_output(['ps', 'aux'])
pathlib.Path('/tmp/ps_aux.txt').write_bytes(output)


When I execute the following script in the REPL, I get your issue but for me, it's normal because the REPL is running in a terminal with a limited size. 

And when I execute the same script like as a simple python script, I don't have your issue.
History
Date User Action Args
2018-10-24 20:34:27matrixisesetrecipients: + matrixise, eryksun, epsolos
2018-10-24 20:34:27matrixisesetmessageid: <1540413267.35.0.788709270274.issue35060@psf.upfronthosting.co.za>
2018-10-24 20:34:27matrixiselinkissue35060 messages
2018-10-24 20:34:27matrixisecreate