diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-18 13:26:49 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-18 13:26:49 +0300 |
commit | 3de134b1d18ab2e74a4093358fd28333eb101f7a (patch) | |
tree | 1d7fb8fc282feb9f8a1a73b126fd0f199f8f7286 /Lib/smtplib.py | |
parent | bb8606dae37b69c06d494f41470975d43385315b (diff) | |
parent | 6bfecd1271b305afcbe3f3f68980f89aa44e1910 (diff) | |
download | cpython-git-3de134b1d18ab2e74a4093358fd28333eb101f7a.tar.gz |
#12448: merge with 3.2.
Diffstat (limited to 'Lib/smtplib.py')
-rw-r--r-- | Lib/smtplib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 68fc646f27..d37b0e247d 100644 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -940,6 +940,7 @@ if __name__ == '__main__': def prompt(prompt): sys.stdout.write(prompt + ": ") + sys.stdout.flush() return sys.stdin.readline().strip() fromaddr = prompt("From") |