--- a/Doc/library/ctypes.rst Thu Aug 04 17:17:07 2011 +0200 +++ b/Doc/library/ctypes.rst Mon Aug 01 17:51:34 2011 -0400 @@ -865,10 +865,10 @@ struct cell; /* forward declaration */ - struct cell { + struct { char *name; struct cell *next; - }; + } cell; The straightforward translation into ctypes code would be this, but it does not work::