summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-03-13 00:17:31 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-03-13 00:17:31 (GMT)
commit45e50de1f5eed5b2ee936e36dd297cd6a43c042d (patch)
tree5a11fee96175f12d556d140e41c0338388f3b525 /Python
parentcc50ba26bd186dd2f7e093be9f7b7bb18d08a35a (diff)
downloadcpython-45e50de1f5eed5b2ee936e36dd297cd6a43c042d.zip
cpython-45e50de1f5eed5b2ee936e36dd297cd6a43c042d.tar.gz
cpython-45e50de1f5eed5b2ee936e36dd297cd6a43c042d.tar.bz2
Try to fix compilation of Python-ast.c on Visual Studio 2008
Diffstat (limited to 'Python')
-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 cf73bea..1178d74 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;