summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-29 07:41:32 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-29 07:41:32 (GMT)
commit9499b7117a0f0e16727abf1dc7035fce8b0df80d (patch)
treedbc334bea7de8432f21f1742d2c90366c345e9a8 /Doc
parent04a51ec8a331df2bd4ff64e150a016f8f10053e1 (diff)
downloadcpython-9499b7117a0f0e16727abf1dc7035fce8b0df80d.zip
cpython-9499b7117a0f0e16727abf1dc7035fce8b0df80d.tar.gz
cpython-9499b7117a0f0e16727abf1dc7035fce8b0df80d.tar.bz2
These are actually methods.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libwebbrowser.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libwebbrowser.tex b/Doc/lib/libwebbrowser.tex
index 11d77a1..8f1910a 100644
--- a/Doc/lib/libwebbrowser.tex
+++ b/Doc/lib/libwebbrowser.tex
@@ -154,20 +154,20 @@ webbrowser.open_new(url)
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}