Message128988
Yes, it does indeed look like stdin has been opened in binary mode. Just iterating over it also gives the spurious carriage returns:
C:\Python32>python
Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> for line in sys.stdin:
... print(repr(line))
...
hello
'hello\r\n'
^Z
>>> |
|
Date |
User |
Action |
Args |
2011-02-21 20:05:25 | duncanb | set | recipients:
+ duncanb, georg.brandl, pitrou, vstinner, ezio.melotti, v+python, brian.curtin, SilentGhost |
2011-02-21 20:05:25 | duncanb | set | messageid: <1298318725.1.0.479929580306.issue11272@psf.upfronthosting.co.za> |
2011-02-21 20:05:24 | duncanb | link | issue11272 messages |
2011-02-21 20:05:24 | duncanb | create | |
|