* Implement Blender_Redraw(), minor changes in other files

* Implemented submodule Text
This commit is contained in:
2003-05-09 04:34:40 +00:00
parent ceeb5e7568
commit 81d2589d6a
8 changed files with 633 additions and 15 deletions

View File

@@ -116,13 +116,13 @@ static PyObject *M_Image_Load(PyObject *self, PyObject *args)
/*****************************************************************************/
PyObject *M_Image_Init (void)
{
PyObject *module;
PyObject *submodule;
printf ("In M_Image_Init()\n");
module = Py_InitModule3("Image", M_Image_methods, M_Image_doc);
submodule = Py_InitModule3("Blender.Image", M_Image_methods, M_Image_doc);
return (module);
return (submodule);
}
/*****************************************************************************/