#12448: smtplib now flushes stdout while running `python -m smtplib`

in order to display the prompt correctly.  Patch by Petri Lehtinen.
This commit is contained in:
Ezio Melotti 2011-10-18 13:20:07 +03:00
parent 67494f2224
commit 6bfecd1271
2 changed files with 4 additions and 0 deletions

View file

@ -912,6 +912,7 @@ if __name__ == '__main__':
def prompt(prompt):
sys.stdout.write(prompt + ": ")
sys.stdout.flush()
return sys.stdin.readline().strip()
fromaddr = prompt("From")