diff options
author | Ned Deily <nad@acm.org> | 2012-04-18 19:48:52 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2012-04-18 19:48:52 (GMT) |
commit | cc19140607e0a1dd98e229a7b6a21c4e05f0eb29 (patch) | |
tree | a404259d63f2618c41b78e9d97f37ec07d9b184d /Doc | |
parent | 2c1414661da660d3df71911026eb6c45e8677f60 (diff) | |
download | cpython-cc19140607e0a1dd98e229a7b6a21c4e05f0eb29.zip cpython-cc19140607e0a1dd98e229a7b6a21c4e05f0eb29.tar.gz cpython-cc19140607e0a1dd98e229a7b6a21c4e05f0eb29.tar.bz2 |
Remove webbrowser doc reference to the previously removed internet-config option.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/webbrowser.rst | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Doc/library/webbrowser.rst b/Doc/library/webbrowser.rst index dfb09ee..b1a8d73 100644 --- a/Doc/library/webbrowser.rst +++ b/Doc/library/webbrowser.rst @@ -133,11 +133,9 @@ for the controller classes, all defined in this module. +-----------------------+-----------------------------------------+-------+ | ``'windows-default'`` | :class:`WindowsDefault` | \(2) | +-----------------------+-----------------------------------------+-------+ -| ``'internet-config'`` | :class:`InternetConfig` | \(3) | +| ``'macosx'`` | :class:`MacOSX('default')` | \(3) | +-----------------------+-----------------------------------------+-------+ -| ``'macosx'`` | :class:`MacOSX('default')` | \(4) | -+-----------------------+-----------------------------------------+-------+ -| ``'safari'`` | :class:`MacOSX('safari')` | \(4) | +| ``'safari'`` | :class:`MacOSX('safari')` | \(3) | +-----------------------+-----------------------------------------+-------+ Notes: @@ -153,9 +151,6 @@ Notes: Only on Windows platforms. (3) - Only on Mac OS platforms; requires the standard MacPython :mod:`ic` module. - -(4) Only on Mac OS X platform. Here are some simple examples:: |