From: Andrew M. Kuchling Date: Sat, 10 Jul 2004 18:28:33 +0000 (+0000) Subject: [Patch #972310] Apply correction to docs X-Git-Tag: v2.4a2~336 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=300ce195920942926bcaee7dda765a27c4f7cf65;p=thirdparty%2FPython%2Fcpython.git [Patch #972310] Apply correction to docs --- diff --git a/Doc/lib/liburllib2.tex b/Doc/lib/liburllib2.tex index 3ce95fb05566..4003e3b40447 100644 --- a/Doc/lib/liburllib2.tex +++ b/Doc/lib/liburllib2.tex @@ -365,15 +365,14 @@ of \function{urlopen()}. OpenerDirector objects open URLs in three stages: +The order in which these methods are called within each stage is +determined by sorting the handler instances. + \begin{enumerate} \item Every handler with a method named like \method{\var{protocol}_request()} has that method called to pre-process the request. - The order in which these methods are called is determined by - sorting the handler instances by the \member{.processor_order} - attribute. - \item Handlers with a method named like \method{\var{protocol}_open()} are called to handle the request. This stage ends when a handler either returns a @@ -391,16 +390,10 @@ OpenerDirector objects open URLs in three stages: the parent \class{OpenerDirector} instance's \method{.open()} and \method{.error()} methods. - The order in which these methods are called is determined by - sorting the handler instances. - \item Every handler with a method named like \method{\var{protocol}_response()} has that method called to post-process the response. - The order in which these methods are called is determined by - sorting the handler instances by the \member{.processor_order} - attribute. \end{enumerate} \subsection{BaseHandler Objects \label{base-handler-objects}}