]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Closes #15953: Incorrect some fields declaration in the PyTypeObject documentation
authorJesus Cea <jcea@jcea.es>
Fri, 28 Sep 2012 14:33:38 +0000 (16:33 +0200)
committerJesus Cea <jcea@jcea.es>
Fri, 28 Sep 2012 14:33:38 +0000 (16:33 +0200)
Doc/extending/newtypes.rst

index 5c594e81df34dd4648d1848402897397264ce47c..269c8fdd770078e4c2ab5b3aeb22a7c01a0f40d6 100644 (file)
@@ -1360,9 +1360,9 @@ that the slots are present and should be checked by the interpreter.  (The flag
 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