Thanks, that explains why the CygWin Python will not import the .pyd
files:
>>> imp.get_suffixes()
[('.dll', 'rb', 3), ('module.dll', 'rb', 3), ('.py', 'U', 1), ('.pyc',
'rb', 2)]
Doesn't look like there's a way to get the CygWin Python to load .pyd
files. So I guess I have to figure out why the
<[EMAIL PROTECTED]> wrote:
> ImportError: No module named _conv
> The file _conf.pyd exists, but my guess is that the .pyd suffix is not
> recognized under the CygWin version of Python. (But that doesn't make
> sense...)
you can use imp.get_suffixes() to get a list of supported extensions.
her