[Python-checkins] r71105 - in python/branches/release26-maint/Doc: howto/cporting.rst library/abc.rst library/multiprocessing.rst library/pdb.rst library/ssl.rst whatsnew/2.6.rst

andrew.kuchling python-checkins at python.org
Fri Apr 3 23:56:37 CEST 2009


Author: andrew.kuchling
Date: Fri Apr  3 23:56:36 2009
New Revision: 71105

Log:
Fix 'the the' duplication (partial backport of r71103

Modified:
   python/branches/release26-maint/Doc/howto/cporting.rst
   python/branches/release26-maint/Doc/library/abc.rst
   python/branches/release26-maint/Doc/library/multiprocessing.rst
   python/branches/release26-maint/Doc/library/pdb.rst
   python/branches/release26-maint/Doc/library/ssl.rst
   python/branches/release26-maint/Doc/whatsnew/2.6.rst

Modified: python/branches/release26-maint/Doc/howto/cporting.rst
==============================================================================
--- python/branches/release26-maint/Doc/howto/cporting.rst	(original)
+++ python/branches/release26-maint/Doc/howto/cporting.rst	Fri Apr  3 23:56:36 2009
@@ -96,7 +96,7 @@
 Python level, but actually corresponds to 2.x's :func:`long` type.  In the
 C-API, ``PyInt_*`` functions are replaced by their ``PyLong_*`` neighbors.  The
 best course of action here is using the ``PyInt_*`` functions aliased to
-``PyLong_*`` found in :file:`intobject.h`.  The the abstract ``PyNumber_*`` APIs
+``PyLong_*`` found in :file:`intobject.h`.  The abstract ``PyNumber_*`` APIs
 can also be used in some cases. ::
 
    #include "Python.h"

Modified: python/branches/release26-maint/Doc/library/abc.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/abc.rst	(original)
+++ python/branches/release26-maint/Doc/library/abc.rst	Fri Apr  3 23:56:36 2009
@@ -134,7 +134,7 @@
    A class that has a metaclass derived from :class:`ABCMeta`
    cannot be instantiated unless all of its abstract methods and
    properties are overridden.
-   The abstract methods can be called using any of the the normal 'super' call
+   The abstract methods can be called using any of the normal 'super' call
    mechanisms.
 
    Dynamically adding abstract methods to a class, or attempting to modify the

Modified: python/branches/release26-maint/Doc/library/multiprocessing.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/multiprocessing.rst	(original)
+++ python/branches/release26-maint/Doc/library/multiprocessing.rst	Fri Apr  3 23:56:36 2009
@@ -1845,7 +1845,7 @@
 any :class:`~multiprocessing.Process` object that the current process creates.
 This means that (by default) all processes of a multi-process program will share
 a single authentication key which can be used when setting up connections
-between the themselves.
+between themselves.
 
 Suitable authentication keys can also be generated by using :func:`os.urandom`.
 

Modified: python/branches/release26-maint/Doc/library/pdb.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/pdb.rst	(original)
+++ python/branches/release26-maint/Doc/library/pdb.rst	Fri Apr  3 23:56:36 2009
@@ -268,7 +268,7 @@
    full speed, only stopping at the next line in the current function.)
 
 unt(il)
-   Continue execution until the line with the the line number greater than the
+   Continue execution until the line with the line number greater than the
    current one is reached or when returning from current frame.
 
    .. versionadded:: 2.6

Modified: python/branches/release26-maint/Doc/library/ssl.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/ssl.rst	(original)
+++ python/branches/release26-maint/Doc/library/ssl.rst	Fri Apr  3 23:56:36 2009
@@ -261,7 +261,7 @@
    If there is no certificate for the peer on the other end of the
    connection, returns ``None``.
 
-   If the the parameter ``binary_form`` is :const:`False`, and a
+   If the parameter ``binary_form`` is :const:`False`, and a
    certificate was received from the peer, this method returns a
    :class:`dict` instance.  If the certificate was not validated, the
    dict is empty.  If the certificate was validated, it returns a dict

Modified: python/branches/release26-maint/Doc/whatsnew/2.6.rst
==============================================================================
--- python/branches/release26-maint/Doc/whatsnew/2.6.rst	(original)
+++ python/branches/release26-maint/Doc/whatsnew/2.6.rst	Fri Apr  3 23:56:36 2009
@@ -1674,7 +1674,7 @@
   :attr:`__self__`, and :attr:`im_func` is also available as :attr:`__func__`.
   The old names are still supported in Python 2.6, but are gone in 3.0.
 
-* An obscure change: when you use the the :func:`locals` function inside a
+* An obscure change: when you use the :func:`locals` function inside a
   :keyword:`class` statement, the resulting dictionary no longer returns free
   variables.  (Free variables, in this case, are variables referenced in the
   :keyword:`class` statement  that aren't attributes of the class.)


More information about the Python-checkins mailing list