]> granicus.if.org Git - python/commitdiff
[Patch #972310] Apply correction to docs
authorAndrew M. Kuchling <amk@amk.ca>
Sat, 10 Jul 2004 18:28:33 +0000 (18:28 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sat, 10 Jul 2004 18:28:33 +0000 (18:28 +0000)
Doc/lib/liburllib2.tex

index 3ce95fb055662461c6564864e7036a6f65aa9955..4003e3b40447e5265793453ce21428e404fc3245 100644 (file)
@@ -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}}