summaryrefslogtreecommitdiffstats
path: root/Doc/faq/extending.rst
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-03-20 15:16:09 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-03-20 15:16:09 (GMT)
commit2f31b4b57762154314beec3b91b4d4a600e17e61 (patch)
tree724537c4155c948a1d372702e1ca41e10ba64766 /Doc/faq/extending.rst
parentdbd1c43e524b63107fa2149a2664ac73287111e7 (diff)
downloadcpython-2f31b4b57762154314beec3b91b4d4a600e17e61.zip
cpython-2f31b4b57762154314beec3b91b4d4a600e17e61.tar.gz
cpython-2f31b4b57762154314beec3b91b4d4a600e17e61.tar.bz2
Fix typos in Doc/faq/extending. Found by cocoatomo on docs@.
Diffstat (limited to 'Doc/faq/extending.rst')
-rw-r--r--Doc/faq/extending.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index a9a234b..d196e86 100644
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -95,8 +95,8 @@ To test the type of an object, first make sure it isn't *NULL*, and then use
There is also a high-level API to Python objects which is provided by the
so-called 'abstract' interface -- read ``Include/abstract.h`` for further
details. It allows interfacing with any kind of Python sequence using calls
-like :c:func:`PySequence_Length`, :c:func:`PySequence_GetItem`, etc.) as well
-as many other useful protocols such as numbers (:c:func:`PyNumber_Index` et.
+like :c:func:`PySequence_Length`, :c:func:`PySequence_GetItem`, etc. as well
+as many other useful protocols such as numbers (:c:func:`PyNumber_Index` et
al.) and mappings in the PyMapping APIs.