Commit 9c4fccbd authored by Ezio Melotti's avatar Ezio Melotti

Add missing versionadded in webbrowser doc.

parent fb5f0492
...@@ -164,12 +164,15 @@ Notes: ...@@ -164,12 +164,15 @@ Notes:
(4) (4)
Only on Mac OS X platform. Only on Mac OS X platform.
.. versionadded:: 3.3
Support for Chrome/Chromium has been added.
Here are some simple examples:: Here are some simple examples::
url = 'http://www.python.org/' url = 'http://docs.python.org/'
# Open URL in a new tab, if a browser window is already open. # Open URL in a new tab, if a browser window is already open.
webbrowser.open_new_tab(url + 'doc/') webbrowser.open_new_tab(url)
# Open URL in new window, raising the window if possible. # Open URL in new window, raising the window if possible.
webbrowser.open_new(url) webbrowser.open_new(url)
......
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