From: Antoine Pitrou Date: Thu, 4 Feb 2010 17:02:07 +0000 (+0000) Subject: Followup to r77918: fix build under Windows. X-Git-Tag: v3.2a1~1747 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f0b31ae4c32a32ee92e0464465172e4e2541b48;p=thirdparty%2FPython%2Fcpython.git Followup to r77918: fix build under Windows. --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index cefcbff98d0c..f9f6fca87331 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -303,7 +303,7 @@ static PyBufferProcs memoryviewtester_as_buffer = { }; static PyTypeObject _MemoryViewTester_Type = { - PyVarObject_HEAD_INIT(&PyType_Type, 0) + PyVarObject_HEAD_INIT(NULL, 0) "memoryviewtester", /* Name of this type */ sizeof(PyObject), /* Basic object size */ 0, /* Item size for varobject */ @@ -2245,6 +2245,7 @@ PyInit__testcapi(void) return NULL; Py_TYPE(&_HashInheritanceTester_Type)=&PyType_Type; + Py_TYPE(&_MemoryViewTester_Type)=&PyType_Type; Py_TYPE(&test_structmembersType)=&PyType_Type; Py_INCREF(&test_structmembersType);