Code clean-up and fix for typos in docstrings.

This commit is contained in:
2013-02-24 02:32:56 +00:00
parent 3bd0b89716
commit d38a335d47
52 changed files with 572 additions and 620 deletions

View File

@@ -81,10 +81,6 @@ static PyObject * BBox_repr(BPy_BBox* self)
return PyUnicode_FromFormat("BBox - address: %p", self->bb);
}
static PyMethodDef BPy_BBox_methods[] = {
{NULL, NULL, 0, NULL}
};
/*-----------------------BPy_BBox type definition ------------------------------*/
PyTypeObject BBox_Type = {
@@ -115,7 +111,7 @@ PyTypeObject BBox_Type = {
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
BPy_BBox_methods, /* tp_methods */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */