[Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.54,2.55
Fred L. Drake
fdrake@users.sourceforge.net
2001年11月17日 18:36:10 -0800
Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv8291
Modified Files:
pyexpat.c
Log Message:
assert.h was not always included by Python.h; make sure we import it for
older versions. (Thanks to Martijn Faassen.)
Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.54
retrieving revision 2.55
diff -C2 -d -r2.54 -r2.55
*** pyexpat.c 2001年11月10日 13:59:16 2.54
--- pyexpat.c 2001年11月18日 02:36:07 2.55
***************
*** 1,3 ****
--- 1,6 ----
#include "Python.h"
+ #if PY_VERSION_HEX < 0x020000B1
+ #include <assert.h>
+ #endif
#include <ctype.h>