[Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex,1.13,1.14

Fred Drake python-dev@python.org
Wed, 5 Apr 2000 18:12:08 -0400


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory seahag.cnri.reston.va.us:/home/fdrake/projects/python/Doc/lib

Modified Files:
	libsmtplib.tex 
Log Message:

Removed bogus connect() call in SMTP example; reported by Travis
B. Hartwell <slt5v@cc.usu.edu>.

Removed second copy of the "See also" section!


Index: libsmtplib.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libsmtplib.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** libsmtplib.tex	2000/04/03 20:13:54	1.13
--- libsmtplib.tex	2000/04/05 22:12:06	1.14
***************
*** 260,276 ****
  server = smtplib.SMTP('localhost')
  server.set_debuglevel(1)
- server.connect()
  server.sendmail(fromaddr, toaddrs, msg)
  server.quit()
  \end{verbatim}
- 
- 
- \begin{seealso}
-   \seetext{Internet \rfc{821}, \citetitle{Simple Mail Transfer Protocol}.
-            Available online at
-            \url{http://info.internet.isi.edu/in-notes/rfc/files/rfc821.txt}.}
- 
-   \seetext{Internet \rfc{1869}, \citetitle{SMTP Service Extensions}.
-            Available online at
-            \url{http://info.internet.isi.edu/in-notes/rfc/files/rfc1869.txt}.}
- \end{seealso}
--- 260,264 ----