From d5bb8362e9a919dab6fd05eba0731a3db3a5063f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 13 Mar 2012 01:17:31 +0100 Subject: Try to fix compilation of Python-ast.c on Visual Studio 2008 --- Python/Python-ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/Python-ast.c') diff --git a/Python/Python-ast.c b/Python/Python-ast.c index cf73beaa15..1178d74d7f 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -456,7 +456,7 @@ static char *withitem_fields[]={ typedef struct { - PyObject_HEAD; + PyObject_HEAD PyObject *dict; } AST_object; -- cgit v1.2.1