[Python-checkins] r46150 - python/trunk/Modules/_struct.c

bob.ippolito python-checkins at python.org
Tue May 23 21:31:23 CEST 2006


Author: bob.ippolito
Date: Tue May 23 21:31:23 2006
New Revision: 46150

Modified:
   python/trunk/Modules/_struct.c
Log:
forward declaration for PyStructType

Modified: python/trunk/Modules/_struct.c
==============================================================================
--- python/trunk/Modules/_struct.c	(original)
+++ python/trunk/Modules/_struct.c	Tue May 23 21:31:23 2006
@@ -8,6 +8,7 @@
 #include "structmember.h"
 #include <ctype.h>
 
+static PyTypeObject PyStructType;
 
 /* compatibility macros */
 #if (PY_VERSION_HEX < 0x02050000)


More information about the Python-checkins mailing list