[Python-checkins] r74333 - python/trunk/Doc/c-api/buffer.rst

georg.brandl python-checkins at python.org
Thu Aug 6 19:43:55 CEST 2009


Author: georg.brandl
Date: Thu Aug  6 19:43:55 2009
New Revision: 74333

Log:
#6658: fix two typos.

Modified:
   python/trunk/Doc/c-api/buffer.rst

Modified: python/trunk/Doc/c-api/buffer.rst
==============================================================================
--- python/trunk/Doc/c-api/buffer.rst	(original)
+++ python/trunk/Doc/c-api/buffer.rst	Thu Aug  6 19:43:55 2009
@@ -148,7 +148,7 @@
       kind of buffer the caller is prepared to deal with and therefore what
       kind of buffer the exporter is allowed to return.  The buffer interface
       allows for complicated memory sharing possibilities, but some caller may
-      not be able to handle all the complexibity but may want to see if the
+      not be able to handle all the complexity but may want to see if the
       exporter will let them take a simpler view to its memory.
 
       Some exporters may not be able to share memory in every possible way and
@@ -256,7 +256,7 @@
 
 .. cfunction:: void PyBuffer_Release(PyObject *obj, Py_buffer *view)
 
-   Release the buffer *view* over *obj*.  This shouldd be called when the buffer
+   Release the buffer *view* over *obj*.  This should be called when the buffer
    is no longer being used as it may free memory from it.
 
 


More information about the Python-checkins mailing list