[Python-checkins] r54605 - python/trunk/Doc/lib/libwebbrowser.tex

georg.brandl python-checkins at python.org
Thu Mar 29 09:41:34 CEST 2007


Author: georg.brandl
Date: Thu Mar 29 09:41:32 2007
New Revision: 54605

Modified:
   python/trunk/Doc/lib/libwebbrowser.tex
Log:
These are actually methods.


Modified: python/trunk/Doc/lib/libwebbrowser.tex
==============================================================================
--- python/trunk/Doc/lib/libwebbrowser.tex	(original)
+++ python/trunk/Doc/lib/libwebbrowser.tex	Thu Mar 29 09:41:32 2007
@@ -154,20 +154,20 @@
 Browser controllers provide two methods which parallel two of the
 module-level convenience functions:
 
-\begin{funcdesc}{open}{url\optional{, new\optional{, autoraise=1}}}
+\begin{methoddesc}{open}{url\optional{, new\optional{, autoraise=1}}}
   Display \var{url} using the browser handled by this controller.
   If \var{new} is 1, a new browser window is opened if possible.
   If \var{new} is 2, a new browser page ("tab") is opened if possible.
-\end{funcdesc}
+\end{methoddesc}
 
-\begin{funcdesc}{open_new}{url}
+\begin{methoddesc}{open_new}{url}
   Open \var{url} in a new window of the browser handled by this
   controller, if possible, otherwise, open \var{url} in the only
   browser window.  Alias \function{open_new}.
-\end{funcdesc}
+\end{methoddesc}
 
-\begin{funcdesc}{open_new_tab}{url}
+\begin{methoddesc}{open_new_tab}{url}
   Open \var{url} in a new page ("tab") of the browser handled by this
   controller, if possible, otherwise equivalent to \function{open_new}.
 \versionadded{2.5}
-\end{funcdesc}
+\end{methoddesc}


More information about the Python-checkins mailing list