src/wrapt/_wrappers.c: remove unnecessry semicolons

This commit is contained in:
stepshal 2016-06-15 19:39:47 +07:00
parent 62920e53f1
commit dc1306e306
1 changed files with 2 additions and 2 deletions

View File

@ -2587,7 +2587,7 @@ static int WraptFunctionWrapper_init(WraptFunctionWrapperObject *self,
return result;
}
/* ------------------------------------------------------------------------- */;
/* ------------------------------------------------------------------------- */
static PyGetSetDef WraptFunctionWrapper_getset[] = {
{ "__module__", (getter)WraptObjectProxy_get_module,
@ -2645,7 +2645,7 @@ PyTypeObject WraptFunctionWrapper_Type = {
0, /*tp_is_gc*/
};
/* ------------------------------------------------------------------------- */;
/* ------------------------------------------------------------------------- */
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef moduledef = {