commit | 6bfecd1271b305afcbe3f3f68980f89aa44e1910 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Tue Oct 18 13:20:07 2011 +0300 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Tue Oct 18 13:20:07 2011 +0300 |
tree | 312101304000d2e3b7942ffa9fb2894002675bdd | |
parent | 67494f22243803422a91634945ae405c5a858939 [diff] [blame] |
#12448: smtplib now flushes stdout while running ``python -m smtplib`` in order to display the prompt correctly. Patch by Petri Lehtinen.
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 13c56e1..fbef96e 100644 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py
@@ -912,6 +912,7 @@ def prompt(prompt): sys.stdout.write(prompt + ": ") + sys.stdout.flush() return sys.stdin.readline().strip() fromaddr = prompt("From")