[Python-checkins] r52461 - python/trunk/Doc/lib/libsmtplib.tex

andrew.kuchling python-checkins at python.org
Fri Oct 27 13:37:01 CEST 2006


Author: andrew.kuchling
Date: Fri Oct 27 13:37:01 2006
New Revision: 52461

Modified:
   python/trunk/Doc/lib/libsmtplib.tex
Log:
Some wording changes and markup fixes

Modified: python/trunk/Doc/lib/libsmtplib.tex
==============================================================================
--- python/trunk/Doc/lib/libsmtplib.tex	(original)
+++ python/trunk/Doc/lib/libsmtplib.tex	Fri Oct 27 13:37:01 2006
@@ -32,12 +32,12 @@
                         local_hostname\optional{,
                         keyfile\optional{,
                         certfile}}}}}}
-A \class{SMTP_SSL} instance behaves exactly the same as instance \class{SMTP}.
-\class{SMTP_SSL} should be used for the situations where SSL is required from 
-the beginning of the connection and \method{starttls()} is not appropriate.
-If host is not specified, the local host is used. If port is
-omitted, the standard SMTP-over-SSL port (465) is used. keyfile and certfile
-are also optional - they can contain a PEM formatted private key and
+A \class{SMTP_SSL} instance behaves exactly the same as instances of \class{SMTP}.
+\class{SMTP_SSL} should be used for situations where SSL is required from 
+the beginning of the connection and using \method{starttls()} is not appropriate.
+If \var{host} is not specified, the local host is used. If \var{port} is
+omitted, the standard SMTP-over-SSL port (465) is used. \var{keyfile} and \var{certfile}
+are also optional, and can contain a PEM formatted private key and
 certificate chain file for the SSL connection.
 \end{classdesc}
 


More information about the Python-checkins mailing list