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 benjamin.peterson
Recipients benjamin.peterson
Date 2008-08-01.16:06:06
SpamBayes Score 1.2605468e-06
Marked as misclassified No
Message-id <1217606768.05.0.96179990455.issue3483@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./python.exe -c "import sys; sys.stdin.read()"
^D

In 2.6, this returns, but in 3.0, it still hangs despite having gotten
EOF. When a KeyboardInterrupt is given, this is the traceback:

^CTraceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/temp/python/py3k/Lib/io.py", line 1692, in read
    decoder.decode(self.buffer.read(), final=True))
  File "/temp/python/py3k/Lib/io.py", line 923, in read
    chunk = self.raw.read()
KeyboardInterrupt
History
Date User Action Args
2008-08-01 16:06:08benjamin.petersonsetrecipients: + benjamin.peterson
2008-08-01 16:06:08benjamin.petersonsetmessageid: <1217606768.05.0.96179990455.issue3483@psf.upfronthosting.co.za>
2008-08-01 16:06:07benjamin.petersonlinkissue3483 messages
2008-08-01 16:06:06benjamin.petersoncreate