]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing versionadded in webbrowser doc.
authorEzio Melotti <ezio.melotti@gmail.com>
Wed, 18 Jan 2012 00:32:07 +0000 (02:32 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Wed, 18 Jan 2012 00:32:07 +0000 (02:32 +0200)
Doc/library/webbrowser.rst

index 188647d0ce2b46f78ded7b53597880680a11ff7a..9cf8c504cc22f06f74708762da124876c3a25d20 100644 (file)
@@ -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)