Cleanup: remove redundant __doc__ from bgl

This commit is contained in:
Campbell Barton 2015-07-24 09:45:25 +10:00
parent 3b362950e9
commit ea3dae74d8
1 changed files with 2 additions and 2 deletions

View File

@ -1425,8 +1425,8 @@ BGLU_Wrap(UnProject, GLint, (GLdouble, GLdouble, GLdouble, GLdouble
/** \name Module Definition
* \{ */
#define MethodDef(func) {"gl"#func, Method_##func, METH_VARARGS, "no string"}
#define MethodDefu(func) {"glu"#func, Method_##func, METH_VARARGS, "no string"}
#define MethodDef(func) {"gl"#func, Method_##func, METH_VARARGS, NULL}
#define MethodDefu(func) {"glu"#func, Method_##func, METH_VARARGS, NULL}
/* So that MethodDef(Accum) becomes:
* {"glAccum", Method_Accumfunc, METH_VARARGS} */