[Python-checkins] cpython (3.4): Fix typos in Doc/faq/extending. Found by cocoatomo on docs at .

zach.ware python-checkins at python.org
Thu Mar 20 18:00:07 CET 2014


http://hg.python.org/cpython/rev/3afa9116859c
changeset:   89884:3afa9116859c
branch:      3.4
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Mar 20 10:16:09 2014 -0500
summary:
  Fix typos in Doc/faq/extending.  Found by cocoatomo on docs at .

files:
  Doc/faq/extending.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -95,8 +95,8 @@
 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.
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list