summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-03-15 09:16:40 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-03-15 09:16:40 (GMT)
commitd4233b2b8c985395ccc92482deeb96b92391ff4d (patch)
tree574b4f90c7609dc4a48219280b3dc57bcea123b3 /Modules
parent4c8349592d508df26b9a8023f7a78d6874eedb08 (diff)
downloadcpython-d4233b2b8c985395ccc92482deeb96b92391ff4d.zip
cpython-d4233b2b8c985395ccc92482deeb96b92391ff4d.tar.gz
cpython-d4233b2b8c985395ccc92482deeb96b92391ff4d.tar.bz2
Include Python.h first. Fixes #530159.
Diffstat (limited to 'Modules')
-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"