summaryrefslogtreecommitdiff
path: root/Python/Python-ast.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-03-13 01:17:31 +0100
committerVictor Stinner <victor.stinner@gmail.com>2012-03-13 01:17:31 +0100
commitd5bb8362e9a919dab6fd05eba0731a3db3a5063f (patch)
treec24dc292b8bd1891adad1cfad34fe80fa3b51940 /Python/Python-ast.c
parentde3de7c53c3af0bcbcba86250f66c320bf2a067d (diff)
downloadcpython-d5bb8362e9a919dab6fd05eba0731a3db3a5063f.tar.gz
Try to fix compilation of Python-ast.c on Visual Studio 2008
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r--Python/Python-ast.c2
1 files changed, 1 insertions, 1 deletions
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;