]> granicus.if.org Git - python/commitdiff
Fix typos in Doc/faq/extending. Found by cocoatomo on docs@.
authorZachary Ware <zachary.ware@gmail.com>
Thu, 20 Mar 2014 15:16:09 +0000 (10:16 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Thu, 20 Mar 2014 15:16:09 +0000 (10:16 -0500)
Doc/faq/extending.rst

index a9a234b1ecae7fb905a1d862f40e72cada2a1fbd..d196e861766a592fa2ddf9a57bb3bf665fe93a71 100644 (file)
@@ -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.