]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
backport bug [ 1021621 ] use first_name, not first, in code samples
authorGeorg Brandl <georg@python.org>
Sun, 17 Jul 2005 21:19:44 +0000 (21:19 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 17 Jul 2005 21:19:44 +0000 (21:19 +0000)
Doc/ext/noddy2.c

index 2683e8b4687667c363a6288d4ba5dc930ac7722a..2caf9855c64052cb88749f719b7c09ebe84aedad 100644 (file)
@@ -3,8 +3,8 @@
 
 typedef struct {
     PyObject_HEAD
-    PyObject *first;
-    PyObject *last;
+    PyObject *first; /* first name */
+    PyObject *last;  /* last name */
     int number;
 } Noddy;