diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-03-13 00:17:31 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-03-13 00:17:31 (GMT) |
commit | 45e50de1f5eed5b2ee936e36dd297cd6a43c042d (patch) | |
tree | 5a11fee96175f12d556d140e41c0338388f3b525 /Parser | |
parent | cc50ba26bd186dd2f7e093be9f7b7bb18d08a35a (diff) | |
download | cpython-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 'Parser')
-rwxr-xr-x | Parser/asdl_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 2f269f4..0be6c7f 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -604,7 +604,7 @@ class PyTypesVisitor(PickleVisitor): def visitModule(self, mod): self.emit(""" typedef struct { - PyObject_HEAD; + PyObject_HEAD PyObject *dict; } AST_object; |