[Python-checkins] CVS: python/dist/src/Modules pypcre.c,2.22,2.23

Martin v. L?wis loewis@users.sourceforge.net
Fri, 15 Mar 2002 01:16:42 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv15346/Modules

Modified Files:
	pypcre.c 
Log Message:
Include Python.h first. Fixes #530159.


Index: pypcre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pypcre.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -d -r2.22 -r2.23
*** pypcre.c	2 Aug 2000 13:41:18 -0000	2.22
--- pypcre.c	15 Mar 2002 09:16:40 -0000	2.23
***************
*** 46,51 ****
  
  #define FOR_PYTHON
- #include "pcre-int.h"
  #include "Python.h"
  #include <ctype.h>
  #include "graminit.h"
--- 46,51 ----
  
  #define FOR_PYTHON
  #include "Python.h"
+ #include "pcre-int.h"
  #include <ctype.h>
  #include "graminit.h"