diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/conf.py | 3 | ||||
-rw-r--r-- | Doc/library/optparse.rst | 6 | ||||
-rw-r--r-- | Doc/whatsnew/2.6.rst | 15 |
3 files changed, 21 insertions, 3 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 8b1514b..0cfbea6 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -95,6 +95,9 @@ html_static_path = ['tools/sphinxext/static'] # Output file base name for HTML help builder. htmlhelp_basename = 'python' + release.replace('.', '') +# Split the index +html_split_index = True + # Options for LaTeX output # ------------------------ diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst index 3bdfab4..bd0b02a 100644 --- a/Doc/library/optparse.rst +++ b/Doc/library/optparse.rst @@ -636,9 +636,9 @@ Or, where the user fails to pass a value at all:: option involved in the error; be sure to do the same when calling ``parser.error()`` from your application code. -If :mod:`optparse`'s default error-handling behaviour does not suite your needs, -you'll need to subclass OptionParser and override ``exit()`` and/or -:meth:`error`. +If :mod:`optparse`'s default error-handling behaviour does not suit your needs, +you'll need to subclass OptionParser and override its :meth:`exit` and/or +:meth:`error` methods. .. _optparse-putting-it-all-together: diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index c4c9093..f3b03e7 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -521,6 +521,21 @@ environment variable. .. ====================================================================== +.. _pep-0371: + +PEP 371: The ``multiprocessing`` Package +===================================================== + +XXX write this. + +.. seealso:: + + :pep:`371` - Per-user ``site-packages`` Directory + PEP written by Jesse Noller and Richard Oudkerk; + implemented by Jesse Noller. + +.. ====================================================================== + .. _pep-3101: PEP 3101: Advanced String Formatting |