]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix 'the the' duplication
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 3 Apr 2009 21:45:29 +0000 (21:45 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 3 Apr 2009 21:45:29 +0000 (21:45 +0000)
Doc/c-api/init.rst
Doc/howto/cporting.rst
Doc/library/abc.rst
Doc/library/multiprocessing.rst
Doc/library/pdb.rst
Doc/library/ssl.rst
Doc/library/ttk.rst
Doc/whatsnew/2.6.rst

index 14292cbef06670c9ab28e590987c442a1d61cb63..6967bd1773dba40f89a00606be0a9e8d56683694 100644 (file)
@@ -802,7 +802,7 @@ created.
 Asynchronous Notifications
 ==========================
 
-A mechanism is provided to make asynchronous notifications to the the main
+A mechanism is provided to make asynchronous notifications to the main
 interpreter thread.  These notifications take the form of a function
 pointer and a void argument.
 
index 3451f5c061f03ffa651f3b11c43481546b09e1cd..9b66650c3885599fedcd5a2a1e03ab4537186718 100644 (file)
@@ -96,7 +96,7 @@ In Python 3.0, there is only one integer type.  It is called :func:`int` on the
 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"
index d591daa387d522b90928bac0f8dab1627b7684bf..9f70b024c40c1526890c03ccc436a8ea7e9c06d4 100644 (file)
@@ -134,7 +134,7 @@ It also provides the following decorators:
    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
index a36836e5267032570501822953a3a455830c94f7..8abf146d794b8f0d9bc786114afb0b41177d0735 100644 (file)
@@ -1857,7 +1857,7 @@ return value of ``current_process().authkey`` is used (see
 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`.
 
index 700146b6e102912a86f7a6a63ce8585366151365..cfc219cbb09bcea5d1a043a219354fccecf321ea 100644 (file)
@@ -268,7 +268,7 @@ n(ext)
    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
index 30f1fea9d1b85da82ea6abc2cff386fe424d7543..1804fcf34f6b9feebc652b881914c6ecb6ccd3d2 100644 (file)
@@ -261,7 +261,7 @@ SSLSocket Objects
    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
index e0ca59a0580480838047ab69567d4513240b9f97..f38664e8ea0312a7e15bebd3a368e492dac3653f 100644 (file)
@@ -1381,7 +1381,7 @@ initial cavity, each element is allocated a parcel. Valid
 options/values are:
 
  * side: whichside
-    Specifies which side of the cavity to place the the element; one of
+    Specifies which side of the cavity to place the element; one of
     top, right, bottom or left. If omitted, the element occupies the
     entire cavity.
 
index 150d54f1c5728e14d965e86d903bcb4533af9bc4..1ffad387f8d903009e95d5735fa57e5444d3a75e 100644 (file)
@@ -1672,7 +1672,7 @@ Some smaller changes made to the core Python language are:
   :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.)