From: Antoine Pitrou Date: Wed, 16 May 2012 10:51:55 +0000 (+0200) Subject: Fix build failure. X-Git-Tag: v3.3.0a4~153^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32bc80c523ed31d86d3deda99e0c18d4fc6c2e93;p=python Fix build failure. --- diff --git a/Objects/exceptions.c b/Objects/exceptions.c index b994862a2d..9e10b7e307 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -349,7 +349,8 @@ PyException_SetContext(PyObject *self, PyObject *context) { static struct PyMemberDef BaseException_members[] = { {"__suppress_context__", T_BOOL, - offsetof(PyBaseExceptionObject, suppress_context)} + offsetof(PyBaseExceptionObject, suppress_context)}, + {NULL} };