Re: Problem using/installing numarray

2005-02-17 Thread maxwell
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

Re: Problem using/installing numarray

2005-02-17 Thread Fredrik Lundh
<[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