From: Ezio Melotti Date: Wed, 18 Jan 2012 00:32:07 +0000 (+0200) Subject: Add missing versionadded in webbrowser doc. X-Git-Tag: v3.3.0a1~364^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25d1bdc4074a93f268e40be1a8e49f003c3cbe57;p=thirdparty%2FPython%2Fcpython.git Add missing versionadded in webbrowser doc. --- diff --git a/Doc/library/webbrowser.rst b/Doc/library/webbrowser.rst index 188647d0ce2b..9cf8c504cc22 100644 --- a/Doc/library/webbrowser.rst +++ b/Doc/library/webbrowser.rst @@ -164,12 +164,15 @@ Notes: (4) Only on Mac OS X platform. +.. versionadded:: 3.3 + Support for Chrome/Chromium has been added. + 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. - webbrowser.open_new_tab(url + 'doc/') + webbrowser.open_new_tab(url) # Open URL in new window, raising the window if possible. webbrowser.open_new(url)