[issue17253] stdin.readline behaviour different between IDLE and the console

2013-02-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Already fixed in issue9290. -- nosy: +serhiy.storchaka resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue17253] stdin.readline behaviour different between IDLE and the console

2013-02-20 Thread Jason R Briggs
Jason R Briggs added the comment: Note, that change I quoted would be in idlelib/PyShell.py -- ___ Python tracker ___ ___ Python-bugs-

[issue17253] stdin.readline behaviour different between IDLE and the console

2013-02-20 Thread Jason R Briggs
New submission from Jason R Briggs: The sys.stdin.readline function takes a limit parameter, which limits the number of characters read. If you try using that parameter in IDLE, you get the following error: Traceback (most recent call last): File "", line 1, in sys.stdin.readline(13) Ty