From: Georg Brandl Date: Sun, 17 Jul 2005 21:18:25 +0000 (+0000) Subject: bug [ 1021621 ] use first_name, not first, in code samples X-Git-Tag: v2.5a0~1582 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c48a740887c80a4e6686486d62171f9efe64921c;p=thirdparty%2FPython%2Fcpython.git bug [ 1021621 ] use first_name, not first, in code samples --- diff --git a/Doc/ext/noddy2.c b/Doc/ext/noddy2.c index 2683e8b46876..2caf9855c640 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;