== docs ==

Changing " **type** " into "\n\n:type: " in Mathutils, to have like "type: float" in its own line.
This commit is contained in:
2010-08-08 16:22:29 +00:00
parent f46a649965
commit 9fe2b252c4
6 changed files with 29 additions and 29 deletions

View File

@@ -629,7 +629,7 @@ PyObject *BaseMathObject_getOwner( BaseMathObject * self, void *type )
return ret;
}
char BaseMathObject_Wrapped_doc[] = "True when this object wraps external data (readonly). **type** boolean";
char BaseMathObject_Wrapped_doc[] = "True when this object wraps external data (readonly).\n\n:type: boolean";
PyObject *BaseMathObject_getWrapped( BaseMathObject *self, void *type )
{
return PyBool_FromLong((self->wrapped == Py_WRAP) ? 1:0);