MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / init_freecad_module

Function init_freecad_module

src/App/Application.cpp:386–396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384static PyMethodDef* ApplicationMethods = nullptr;
385
386PyMODINIT_FUNC
387init_freecad_module(void)
388{
389 static struct PyModuleDef FreeCADModuleDef = {
390 PyModuleDef_HEAD_INIT,
391 "FreeCAD", FreeCAD_doc, -1,
392 ApplicationMethods,
393 nullptr, nullptr, nullptr, nullptr
394 };
395 return PyModule_Create(&FreeCADModuleDef);
396}
397
398PyMODINIT_FUNC
399init_image_module()

Callers 2

setupPythonTypesMethod · 0.85
initConfigMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected