From: Georg Brandl Date: Sun, 17 Jul 2005 21:19:44 +0000 (+0000) Subject: backport bug [ 1021621 ] use first_name, not first, in code samples X-Git-Tag: v2.4.2c1~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b454ea90c9c2c214fe90e07ec507ca4e9062db1b;p=thirdparty%2FPython%2Fcpython.git backport 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;