Hide several internal Python wrapper functions
It is not necessary to export these functions, since they are always called from the same Python extension module that they are defined in. Hiding them results in a tidier DLL interface. After this change, the PyInit_<module>()
function is the only exported function.
Edited by David Gobbi