The PyMethodDef C struct has several fields that are prefixed with 'ml'. What does 'ml' stand for?
https://docs.python.org/2/c-api/structures.html#c.PyMethodDef
The PyMethodDef C struct has several fields that are prefixed with 'ml'. What does 'ml' stand for?
https://docs.python.org/2/c-api/structures.html#c.PyMethodDef
After a lot of googling, I found another stack question that indirectly answered your question.
That is, the ml
stands for Modular Loading.
Some people even break this down further to just module, as in module_method
.
The whole answer to the link stack question is definitely worth the read, too!