Commit 776e0cd9 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Add example

parent d3284805
......@@ -136,6 +136,18 @@ Library Modules} manual.
Only on MacOS X platform.
\end{description}
Here are some simple examples:
\begin{verbatim}
url = 'http://www.python.org'
# Open URL in a new tab, if a browser window is already open.
webbrowser.open_new_tab(url + '/doc')
# Open URL in new window, raising the window if possible.
webbrowser.open_new(url)
\end{verbatim}
\subsection{Browser Controller Objects \label{browser-controllers}}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment