diff options
author | Guido van Rossum <guido@python.org> | 2007-02-09 20:13:25 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-02-09 20:13:25 +0000 |
commit | 7131f84400d85d35d0323c262cc0926bef5a18cf (patch) | |
tree | 4cc23830260de4be99d1ba56b9b80b20edb02996 /Lib/smtplib.py | |
parent | 4502c804b9f15d26d7636d9c3b5f7faadb2f5362 (diff) | |
download | cpython-git-7131f84400d85d35d0323c262cc0926bef5a18cf.tar.gz |
Fix a bunch of doctests with the -d option of refactor.py.
We still have 27 failing tests (down from 39).
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index aedcac43bc..9851d08eba 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -15,7 +15,7 @@ Example: >>> import smtplib >>> s=smtplib.SMTP("localhost") - >>> print s.help() + >>> print(s.help()) This is Sendmail version 8.8.4 Topics: HELO EHLO MAIL RCPT DATA |