summaryrefslogtreecommitdiff
path: root/Doc/c-api/intro.rst
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 17:23:46 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 17:23:46 -0400
commit65e69b37183eb0172b9fbbf28388ff0b0d05b792 (patch)
tree2462ee8dc9a44af4f422c64b2425d5166a0420ad /Doc/c-api/intro.rst
parentaf8838f4430cec7ba36caf3ce419a5205451c02a (diff)
downloadcpython-git-65e69b37183eb0172b9fbbf28388ff0b0d05b792.tar.gz
Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*
found by Serhiy Storchaka and Matthew Barnett
Diffstat (limited to 'Doc/c-api/intro.rst')
-rw-r--r--Doc/c-api/intro.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst
index e136816688..6464fe7d37 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::