Returns a string with the module creation function for Python, i.e.
the Python extension module's entry point. Needs to be a string mixin
since Python knows which function is the entry point by name convention,
where an extension module called "foo" needs to export a function
PyInit_foo. "All" this function does is create a function with the
appropriate name and stringify the arguments to pass to the function
doing the heavy lifting: createPythonModule.
Returns a string with the module creation function for Python, i.e. the Python extension module's entry point. Needs to be a string mixin since Python knows which function is the entry point by name convention, where an extension module called "foo" needs to export a function PyInit_foo. "All" this function does is create a function with the appropriate name and stringify the arguments to pass to the function doing the heavy lifting: createPythonModule.