diff options
author | Guido van Rossum <guido@python.org> | 1998-05-29 02:58:20 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-05-29 02:58:20 +0000 |
commit | 3c8c5981b18948b5ddfc0ef3bcf0a6e000bb59b4 (patch) | |
tree | 321ef3e320aa80ec77f6210846de18b592a1f05f /Modules/parsermodule.c | |
parent | d3ab101facfc6e6ac8506e609d1f141e8dd485a3 (diff) | |
download | cpython-git-3c8c5981b18948b5ddfc0ef3bcf0a6e000bb59b4.tar.gz |
Sorry, the initializer for ob_type must really be NULL,
else the damn thing won't compile on Windows :-(
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 3db3431c73..eba64a444f 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -209,7 +209,7 @@ parser_getattr Py_PROTO((PyObject *self, char *name)); static PyTypeObject PyAST_Type = { - PyObject_HEAD_INIT(&PyType_Type) + PyObject_HEAD_INIT(NULL) 0, "ast", /* tp_name */ (int) sizeof(PyAST_Object), /* tp_basicsize */ |