[Python-checkins] commit of r41346 - python/trunk/Doc/lib

vinay.sajip@python.org vinay.sajip at python.org
Sat Oct 29 02:40:15 CEST 2005


Author: vinay.sajip
Date: Sat Oct 29 02:40:15 2005
New Revision: 41346

Modified:
   python/trunk/Doc/lib/liblogging.tex
Log:
Minor update to HTTPHandler documentation to indicate that host:port can be used.

Modified: python/trunk/Doc/lib/liblogging.tex
==============================================================================
--- python/trunk/Doc/lib/liblogging.tex	(original)
+++ python/trunk/Doc/lib/liblogging.tex	Sat Oct 29 02:40:15 2005
@@ -1253,7 +1253,9 @@
 \begin{classdesc}{HTTPHandler}{host, url\optional{, method}}
 Returns a new instance of the \class{HTTPHandler} class. The
 instance is initialized with a host address, url and HTTP method.
-If no \var{method} is specified, \samp{GET} is used.
+The \var{host} can be of the form \code{host:port}, should you need to
+use a specific port number. If no \var{method} is specified, \samp{GET}
+is used.
 \end{classdesc}
 
 \begin{methoddesc}{emit}{record}


More information about the Python-checkins mailing list