changeset: 79216:c87ea480ddf3 branch: 3.2 parent: 79211:6c96878eb729 user: Jesus Cea date: Fri Sep 28 16:34:45 2012 +0200 files: Doc/extending/newtypes.rst description: Closes #15953: Incorrect some fields declaration in the PyTypeObject documentation diff -r 6c96878eb729 -r c87ea480ddf3 Doc/extending/newtypes.rst --- a/Doc/extending/newtypes.rst Fri Sep 28 07:07:12 2012 -0700 +++ b/Doc/extending/newtypes.rst Fri Sep 28 16:34:45 2012 +0200 @@ -1299,9 +1299,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

AltStyle によって変換されたページ (->オリジナル) /