[issue40710] Malfunctioning of '\r' (ii)

2020-05-21 Thread Ezio Melotti
Ezio Melotti added the comment: Correct. This is a Windows issue, not a Python one. -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___

[issue40710] Malfunctioning of '\r' (ii)

2020-05-21 Thread Sanmitha
Sanmitha added the comment: The escape sequence'\r' doesn't work in Windows operating system. All the versions including windows 10 doesn't support. -- resolution: not a bug -> status: closed -> open title: Malfunctioning of '\r' -> Malfunctioning of '\r' (ii) Added file: https://bug

[issue40710] Malfunctioning of '\r'

2020-05-21 Thread Ezio Melotti
Ezio Melotti added the comment: The behavior of \r depends on the operating system and terminal you are using, and not on Python itself. -- assignee: terry.reedy -> ezio.melotti nosy: +ezio.melotti resolution: -> not a bug stage: -> resolved status: open -> closed type: performance

[issue40710] Malfunctioning of '\r'

2020-05-21 Thread pmp-p
pmp-p added the comment: Hi, i can't reproduce on standard terminals, what is your OS version and terminal application ( also please state value of $TERM ) -- nosy: +pmpp ___ Python tracker

[issue40710] Malfunctioning of '\r'

2020-05-21 Thread Sanmitha
New submission from Sanmitha : The escape sequence '\r' (carriage return) doesn't function in 3.x and 2.x versions. Eg: print("computer\rscience") Expected output : sciencer But, it displays computerscience without the functioning of'\r' -- Added file: https://bugs.python.org/file49177

[issue40710] Malfunctioning of '\r'

2020-05-21 Thread Sanmitha
Change by Sanmitha : -- assignee: terry.reedy components: IDLE nosy: Sanmitha Sadhishkumar, terry.reedy priority: normal severity: normal status: open title: Malfunctioning of '\r' type: performance versions: Python 3.5, Python 3.6, Python 3.7, Python 3.8 __