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
commit45e50de1f5eed5b2ee936e36dd297cd6a43c042d (patch)
tree5a11fee96175f12d556d140e41c0338388f3b525 /Python/Python-ast.c
parentcc50ba26bd186dd2f7e093be9f7b7bb18d08a35a (diff)
downloadcpython-git-45e50de1f5eed5b2ee936e36dd297cd6a43c042d.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;