summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-03-16 17:58:21 (GMT)
committerMichael W. Hudson <mwh@python.net>2002-03-16 17:58:21 (GMT)
commit023db775f7efc5598a823fc43dc2cc3e401bcda1 (patch)
tree33675ce55475b2b3a8bf3a50b9e8c87b40a0e7cb
parentbf05f2aaa6ae80a9305f4e70691e53c380c0c459 (diff)
downloadcpython-023db775f7efc5598a823fc43dc2cc3e401bcda1.zip
cpython-023db775f7efc5598a823fc43dc2cc3e401bcda1.tar.gz
cpython-023db775f7efc5598a823fc43dc2cc3e401bcda1.tar.bz2
backport loewis' checkin of
revision 2.23 of pypcre.c Include Python.h first. Fixes #530159.
-rw-r--r--Modules/pypcre.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pypcre.c b/Modules/pypcre.c
index c6a14ec..e0aa8d0 100644
--- a/Modules/pypcre.c
+++ b/Modules/pypcre.c
@@ -45,8 +45,8 @@ restrictions:
#define FOR_PYTHON
-#include "pcre-int.h"
#include "Python.h"
+#include "pcre-int.h"
#include <ctype.h>
#include "graminit.h"