]> granicus.if.org Git - python/commitdiff
Grammar fix.
authorGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 21:52:16 +0000 (21:52 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 3 Jan 2009 21:52:16 +0000 (21:52 +0000)
Doc/c-api/structures.rst

index f8635e58e4cf5aad3b9f5720ef4c9e5720d5d9f8..e92827d5f2297c7a785eb8b7ab3c908f8f5843e4 100644 (file)
@@ -208,7 +208,7 @@ definition with the same method name.
 .. ctype:: PyMemberDef
 
    Structure which describes an attribute of a type which corresponds to a C
-   struct member.  It's fields are:
+   struct member.  Its fields are:
 
    +------------------+-------------+-------------------------------+
    | Field            | C Type      | Meaning                       |
@@ -263,9 +263,8 @@ definition with the same method name.
 
    :attr:`flags` can be 0 for write and read access or :cmacro:`READONLY` for
    read-only access.  Using :cmacro:`T_STRING` for :attr:`type` implies
-   :cmacro:`READONLY`.  Only :cmacro:`T_OBJECT` and :cmacro:`T_OBJECT_EX` can be
-   deleted.  (They are set to *NULL*).
-
+   :cmacro:`READONLY`.  Only :cmacro:`T_OBJECT` and :cmacro:`T_OBJECT_EX`
+   members can be deleted.  (They are set to *NULL*).
 
 
 .. cfunction:: PyObject* Py_FindMethod(PyMethodDef table[], PyObject *ob, char *name)