mirror of https://github.com/python/cpython
Sorry, the initializer for ob_type must really be NULL,
else the damn thing won't compile on Windows :-(
This commit is contained in:
parent
d3ab101fac
commit
3c8c5981b1
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue