I have a python pyd module that has been compiled with python26.dll (its 'msparser' by matrixscience, a library to interface with some mass spectrometry data formats). It is possible to use this pyd module on windows with activestate python 2.7. However, on a generic install it throws the ImportError: DLL load failed... because python26.dll is missing.
So, is there any advice for importing a pyd compiled with an earlier version of python on a later version of python? Activestate is achieving this somehow so I guess it has to be possible.