From: Raymond Hettinger Date: Mon, 22 Sep 2003 06:25:10 +0000 (+0000) Subject: Clean-up example code: remove string module and backticks. X-Git-Tag: v2.4a1~1542 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e8035973325158eaa134164e7d6882c000774ff;p=python Clean-up example code: remove string module and backticks. --- diff --git a/Doc/lib/libsmtplib.tex b/Doc/lib/libsmtplib.tex index d461a32132..92661db965 100644 --- a/Doc/lib/libsmtplib.tex +++ b/Doc/lib/libsmtplib.tex @@ -264,7 +264,6 @@ processing of the \rfc{822} headers. In particular, the `To' and \begin{verbatim} import smtplib -import string def prompt(prompt): return raw_input(prompt).strip() @@ -275,7 +274,7 @@ print "Enter message, end with ^D (Unix) or ^Z (Windows):" # Add the From: and To: headers at the start! msg = ("From: %s\r\nTo: %s\r\n\r\n" - % (fromaddr, string.join(toaddrs, ", "))) + % (fromaddr, ", ".join(toaddrs))) while 1: try: line = raw_input() @@ -285,7 +284,7 @@ while 1: break msg = msg + line -print "Message length is " + `len(msg)` +print "Message length is " + repr(len(msg)) server = smtplib.SMTP('localhost') server.set_debuglevel(1)