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

@@ -58,32 +58,32 @@ int UnaryFunction0DFloat_Init(PyObject *module)
return -1;
Py_INCREF(&UnaryFunction0DFloat_Type);
PyModule_AddObject(module, "UnaryFunction0DFloat", (PyObject *)&UnaryFunction0DFloat_Type);
if (PyType_Ready(&GetCurvilinearAbscissaF0D_Type) < 0)
return -1;
Py_INCREF(&GetCurvilinearAbscissaF0D_Type);
PyModule_AddObject(module, "GetCurvilinearAbscissaF0D", (PyObject *)&GetCurvilinearAbscissaF0D_Type);
if (PyType_Ready(&GetParameterF0D_Type) < 0)
return -1;
Py_INCREF(&GetParameterF0D_Type);
PyModule_AddObject(module, "GetParameterF0D", (PyObject *)&GetParameterF0D_Type);
if (PyType_Ready(&GetViewMapGradientNormF0D_Type) < 0)
return -1;
Py_INCREF(&GetViewMapGradientNormF0D_Type);
PyModule_AddObject(module, "GetViewMapGradientNormF0D", (PyObject *)&GetViewMapGradientNormF0D_Type);
if (PyType_Ready(&ReadCompleteViewMapPixelF0D_Type) < 0)
return -1;
Py_INCREF(&ReadCompleteViewMapPixelF0D_Type);
PyModule_AddObject(module, "ReadCompleteViewMapPixelF0D", (PyObject *)&ReadCompleteViewMapPixelF0D_Type);
if (PyType_Ready(&ReadMapPixelF0D_Type) < 0)
return -1;
Py_INCREF(&ReadMapPixelF0D_Type);
PyModule_AddObject(module, "ReadMapPixelF0D", (PyObject *)&ReadMapPixelF0D_Type);
if (PyType_Ready(&ReadSteerableViewMapPixelF0D_Type) < 0)
return -1;
Py_INCREF(&ReadSteerableViewMapPixelF0D_Type);