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 jonash
Recipients jonash
Date 2011-09-01.13:38:32
SpamBayes Score 6.77624e-08
Marked as misclassified No
Message-id <1314884313.21.0.764506702479.issue12877@psf.upfronthosting.co.za>
In-reply-to
Content
from subprocess import Popen, PIPE
p = Popen(['ls'], stdout=PIPE)
p.wait()
p.stdout.seek(0)


Traceback (most recent call last):
  File "t.py", line 5, in <module>
    p.stdout.seek(0)
IOError: [Errno 29] Illegal seek

Python 2.7.2, Arch Linux x86-64 (Kernel 3.0)
History
Date User Action Args
2011-09-01 13:38:33jonashsetrecipients: + jonash
2011-09-01 13:38:33jonashsetmessageid: <1314884313.21.0.764506702479.issue12877@psf.upfronthosting.co.za>
2011-09-01 13:38:32jonashlinkissue12877 messages
2011-09-01 13:38:32jonashcreate