From 736c9aa5d408e1f0c119701d0487f8a0e726598c Mon Sep 17 00:00:00 2001 From: "vinay.sajip" Date: Sat, 29 Oct 2005 00:40:15 +0000 Subject: [PATCH] Minor update to HTTPHandler documentation to indicate that host:port can be used. git-svn-id: http://svn.python.org/projects/python/trunk@41346 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Doc/lib/liblogging.tex | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/lib/liblogging.tex b/Doc/lib/liblogging.tex index eb6fedb1e4..f2e5ca609a 100644 --- a/Doc/lib/liblogging.tex +++ b/Doc/lib/liblogging.tex @@ -1253,7 +1253,9 @@ Web server, using either \samp{GET} or \samp{POST} semantics. \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} -- 2.11.4.GIT