summaryrefslogtreecommitdiffstats
path: root/Doc/ext
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-07-17 21:18:25 (GMT)
committerGeorg Brandl <georg@python.org>2005-07-17 21:18:25 (GMT)
commitc48a740887c80a4e6686486d62171f9efe64921c (patch)
tree85f68cc145fbfe6cd8ede48095d6e46ad1506b07 /Doc/ext
parentb37b8eca8856b0a034814f60fd34490d962c6dff (diff)
downloadcpython-c48a740887c80a4e6686486d62171f9efe64921c.zip
cpython-c48a740887c80a4e6686486d62171f9efe64921c.tar.gz
cpython-c48a740887c80a4e6686486d62171f9efe64921c.tar.bz2
bug [ 1021621 ] use first_name, not first, in code samples
Diffstat (limited to 'Doc/ext')
-rw-r--r--Doc/ext/noddy2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ext/noddy2.c b/Doc/ext/noddy2.c
index 2683e8b..2caf985 100644
--- a/Doc/ext/noddy2.c
+++ b/Doc/ext/noddy2.c
@@ -3,8 +3,8 @@
typedef struct {
PyObject_HEAD
- PyObject *first;
- PyObject *last;
+ PyObject *first; /* first name */
+ PyObject *last; /* last name */
int number;
} Noddy;