summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 21:26:33 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 21:26:33 (GMT)
commitcaeb6bea9bd52859bceae8437bd931335aacad94 (patch)
treec08b1fe76ef466a75c6522eccbbd800c233a99e6 /Doc
parentc9cfcf1e6cd946492be949533de906785d690069 (diff)
parent65e69b37183eb0172b9fbbf28388ff0b0d05b792 (diff)
downloadcpython-caeb6bea9bd52859bceae8437bd931335aacad94.zip
cpython-caeb6bea9bd52859bceae8437bd931335aacad94.tar.gz
cpython-caeb6bea9bd52859bceae8437bd931335aacad94.tar.bz2
Merge with 3.2: Issue #17047: removed doubled words in Doc/*,
Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/intro.rst2
-rw-r--r--Doc/c-api/long.rst4
-rw-r--r--Doc/library/xml.dom.rst2
3 files changed, 4 insertions, 4 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst
index e136816..6464fe7 100644
--- a/Doc/c-api/intro.rst
+++ b/Doc/c-api/intro.rst
@@ -433,7 +433,7 @@ and lose important information about the exact cause of the error.
.. index:: single: sum_sequence()
A simple example of detecting exceptions and passing them on is shown in the
-:c:func:`sum_sequence` example above. It so happens that that example doesn't
+:c:func:`sum_sequence` example above. It so happens that this example doesn't
need to clean up any owned references when it detects an error. The following
example function shows some error cleanup. First, to remind you why you like
Python, we show the equivalent Python code::
diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst
index 365abd7..d5430fd 100644
--- a/Doc/c-api/long.rst
+++ b/Doc/c-api/long.rst
@@ -203,7 +203,7 @@ All integers are implemented as "long" integer objects of arbitrary size.
.. c:function:: size_t PyLong_AsSize_t(PyObject *pylong)
- Return a C :c:type:`size_t` representation of of *pylong*. *pylong* must be
+ Return a C :c:type:`size_t` representation of *pylong*. *pylong* must be
an instance of :c:type:`PyLongObject`.
Raise :exc:`OverflowError` if the value of *pylong* is out of range for a
@@ -215,7 +215,7 @@ All integers are implemented as "long" integer objects of arbitrary size.
.. index::
single: OverflowError (built-in exception)
- Return a C :c:type:`unsigned PY_LONG_LONG` representation of of *pylong*.
+ Return a C :c:type:`unsigned PY_LONG_LONG` representation of *pylong*.
*pylong* must be an instance of :c:type:`PyLongObject`.
Raise :exc:`OverflowError` if the value of *pylong* is out of range for an
diff --git a/Doc/library/xml.dom.rst b/Doc/library/xml.dom.rst
index 297fc0c..1a3a6a4 100644
--- a/Doc/library/xml.dom.rst
+++ b/Doc/library/xml.dom.rst
@@ -357,7 +357,7 @@ All of the components of an XML document are subclasses of :class:`Node`.
Add a new child node to this node at the end of the list of
children, returning *newChild*. If the node was already in
- in the tree, it is removed first.
+ the tree, it is removed first.
.. method:: Node.insertBefore(newChild, refChild)