Fix issue #1707. When raw_input() was removed, it was incorrectly replaced

with sys.stdin.readline().  I wonder how many other places are affected
by the same bug?
This commit is contained in:
Guido van Rossum 2008-01-02 02:55:27 +00:00
parent cfb83330ce
commit 83210b9ea0

View file

@ -253,13 +253,12 @@ def raw_input(self, prompt=""):
The returned line does not include the trailing newline.
When the user enters the EOF key sequence, EOFError is raised.
The base implementation uses sys.stdin.readline(); a subclass
may replace this with a different implementation.
The base implementation uses the built-in function
input(); a subclass may replace this with a different
implementation.
"""
sys.stdout.write(prompt)
sys.stdout.flush()
return sys.stdin.readline()
return input(prompt)