[Python-checkins] cpython (merge 3.2 -> default): MERGE: Closes #15953: Incorrect some fields declaration in the PyTypeObject

jesus.cea python-checkins at python.org
Fri Sep 28 16:35:42 CEST 2012


http://hg.python.org/cpython/rev/3bb53816f9c5
changeset:   79217:3bb53816f9c5
parent:      79214:f69dc59bfc53
parent:      79216:c87ea480ddf3
user:        Jesus Cea <jcea at jcea.es>
date:        Fri Sep 28 16:35:21 2012 +0200
summary:
  MERGE: Closes #15953: Incorrect some fields declaration in the PyTypeObject documentation

files:
  Doc/extending/newtypes.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst
--- a/Doc/extending/newtypes.rst
+++ b/Doc/extending/newtypes.rst
@@ -1277,9 +1277,9 @@
 bit does not indicate that the slot values are non-*NULL*. The flag may be set
 to indicate the presence of a slot, but a slot may still be unfilled.) ::
 
-   PyNumberMethods   tp_as_number;
-   PySequenceMethods tp_as_sequence;
-   PyMappingMethods  tp_as_mapping;
+   PyNumberMethods   *tp_as_number;
+   PySequenceMethods *tp_as_sequence;
+   PyMappingMethods  *tp_as_mapping;
 
 If you wish your object to be able to act like a number, a sequence, or a
 mapping object, then you place the address of a structure that implements the C

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


More information about the Python-checkins mailing list