]> granicus.if.org Git - python/commitdiff
Clean-up example code: remove string module and backticks.
authorRaymond Hettinger <python@rcn.com>
Mon, 22 Sep 2003 06:25:10 +0000 (06:25 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 22 Sep 2003 06:25:10 +0000 (06:25 +0000)
Doc/lib/libsmtplib.tex

index d461a3213213a22a67cbf272b5e6bf70ee3a3312..92661db965f0587c5b6275aa9667833e6ed26bd5 100644 (file)
@@ -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)