diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-02-02 21:29:40 +0000 |
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-02-02 21:29:40 +0000 |
| commit | 9f9892648f954e45a628113febb524261075db32 (patch) | |
| tree | 9a9e70a2318e67812787794ea9ab91f59b16b37a /Doc/includes | |
| parent | 7f42395b6d78a7c8e6b2ef2623c181aa93084269 (diff) | |
| download | cpython-git-9f9892648f954e45a628113febb524261075db32.tar.gz | |
Issue #1717, continued: Doc fixes and other cleanup related
to renaming of tp_compare.
Diffstat (limited to 'Doc/includes')
| -rw-r--r-- | Doc/includes/noddy.c | 2 | ||||
| -rw-r--r-- | Doc/includes/noddy2.c | 2 | ||||
| -rw-r--r-- | Doc/includes/noddy3.c | 2 | ||||
| -rw-r--r-- | Doc/includes/noddy4.c | 2 | ||||
| -rw-r--r-- | Doc/includes/shoddy.c | 2 | ||||
| -rw-r--r-- | Doc/includes/typestruct.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Doc/includes/noddy.c b/Doc/includes/noddy.c index b6b7d6feda..3f37434e30 100644 --- a/Doc/includes/noddy.c +++ b/Doc/includes/noddy.c @@ -14,7 +14,7 @@ static PyTypeObject noddy_NoddyType = { 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ - 0, /* tp_compare */ + 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ diff --git a/Doc/includes/noddy2.c b/Doc/includes/noddy2.c index db9c7a88d5..0907281baa 100644 --- a/Doc/includes/noddy2.c +++ b/Doc/includes/noddy2.c @@ -131,7 +131,7 @@ static PyTypeObject NoddyType = { 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ - 0, /* tp_compare */ + 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ diff --git a/Doc/includes/noddy3.c b/Doc/includes/noddy3.c index e98b87fdd3..fac44d8808 100644 --- a/Doc/includes/noddy3.c +++ b/Doc/includes/noddy3.c @@ -184,7 +184,7 @@ static PyTypeObject NoddyType = { 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ - 0, /* tp_compare */ + 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ diff --git a/Doc/includes/noddy4.c b/Doc/includes/noddy4.c index 5be00a796a..1b3704ceff 100644 --- a/Doc/includes/noddy4.c +++ b/Doc/includes/noddy4.c @@ -165,7 +165,7 @@ static PyTypeObject NoddyType = { 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ - 0, /* tp_compare */ + 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ diff --git a/Doc/includes/shoddy.c b/Doc/includes/shoddy.c index 3757bca0ef..bb7f05b107 100644 --- a/Doc/includes/shoddy.c +++ b/Doc/includes/shoddy.c @@ -39,7 +39,7 @@ static PyTypeObject ShoddyType = { 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ - 0, /* tp_compare */ + 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ diff --git a/Doc/includes/typestruct.h b/Doc/includes/typestruct.h index f6451b925d..32647c0ee5 100644 --- a/Doc/includes/typestruct.h +++ b/Doc/includes/typestruct.h @@ -9,7 +9,7 @@ typedef struct _typeobject { printfunc tp_print; getattrfunc tp_getattr; setattrfunc tp_setattr; - cmpfunc tp_compare; + void *tp_reserved; reprfunc tp_repr; /* Method suites for standard classes */ |
