bug [ 1021621 ] use first_name, not first, in code samples

This commit is contained in:
Georg Brandl 2005-07-17 21:18:25 +00:00
parent b37b8eca88
commit c48a740887
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
typedef struct {
PyObject_HEAD
PyObject *first;
PyObject *last;
PyObject *first; /* first name */
PyObject *last; /* last name */
int number;
} Noddy;