Skip to content

Commit 5e5b5bf

Browse files
authored
Merge pull request #55 from InvestmentSystems/Minor-improvements
Use explicit structs names for clarity
2 parents 1c86934 + 9888637 commit 5e5b5bf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/_arraykit.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,11 @@ static PyMethodDef arraykit_methods[] = {
776776
};
777777

778778
static struct PyModuleDef arraykit_module = {
779-
PyModuleDef_HEAD_INIT, "_arraykit", NULL, -1, arraykit_methods,
779+
PyModuleDef_HEAD_INIT,
780+
.m_name = "_arraykit",
781+
.m_doc = NULL,
782+
.m_size = -1,
783+
.m_methods = arraykit_methods,
780784
};
781785

782786
PyObject *

0 commit comments

Comments
 (0)