[Python-checkins] r68236 - in python/branches/release26-maint: Doc/c-api/structures.rst

georg.brandl python-checkins at python.org
Sat Jan 3 22:58:35 CET 2009


Author: georg.brandl
Date: Sat Jan  3 22:58:35 2009
New Revision: 68236

Log:
Merged revisions 68232 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r68232 | georg.brandl | 2009-01-03 22:52:16 +0100 (Sat, 03 Jan 2009) | 2 lines
  
  Grammar fix.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/c-api/structures.rst

Modified: python/branches/release26-maint/Doc/c-api/structures.rst
==============================================================================
--- python/branches/release26-maint/Doc/c-api/structures.rst	(original)
+++ python/branches/release26-maint/Doc/c-api/structures.rst	Sat Jan  3 22:58:35 2009
@@ -208,7 +208,7 @@
 .. 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 @@
 
    :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)


More information about the Python-checkins mailing list