[issue11434] Python 3.2 input() does not remove \r at the end of returned string.

2011-03-07 Thread Joshua Logan

New submission from Joshua Logan dear.jay.lo...@gmail.com:

Hello,

It is mentioned in the documentation for input() ( 
http://docs.python.org/py3k/library/functions.html#input ) that the newline is 
stripped from the end of the returned string. However, on Windows, it used to 
trim '\r\n'. Now it no longer trims '\r'.

See output below:

C:\python
Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on 
win32

 name = input(What's your name? )
What's your name? Josh
 print(name)
Josh
 print(list(name))
['J', 'o', 's', 'h', '\r']

--
components: Windows
messages: 130265
nosy: jaylogan
priority: normal
severity: normal
status: open
title: Python 3.2 input() does not remove \r at the end of returned string.
type: behavior
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11434
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11434] Python 3.2 input() does not remove \r at the end of returned string.

2011-03-07 Thread Andreas Stührk

Andreas Stührk andy-pyt...@hammerhartes.de added the comment:

This is a duplicate of issue #11272.

--
nosy: +Trundle

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11434
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com