Re: importing from .pyd
- From: moijes12 <moijes12@xxxxxxxxx>
- Date: Fri, 29 Aug 2008 05:17:16 -0700 (PDT)
On Jul 14, 4:11 pm, Kay Schluehr <kay.schlu...@xxxxxxx> wrote:
On 14 Jul., 06:03, moijes12 <moije...@xxxxxxxxx> wrote:
hi
there is a .pyd file present in the same folder as the script abc.py
by the name foo.pyd .I don't have foo.py .In the script abc.py I try
import foo
Error i get is
ImportError: DLL load failed: The specified module could not be found.
It looks like the module that was accessed is either corrupt
( unavailable entry point ) or it contains dependencies to other
modules which are not available.
At least the latter can be checked without access to the source using
the DependencyWalker:
http://www.dependencywalker.com/
Notice that the message clearly indicates that Python found the module
but failed to load it i.e. performing a LoadLibrary() which yielded a
NULL pointer.
thanks
.
- Prev by Date: Re: translating "create Semaphore" to Linux
- Next by Date: Re: translating "create Semaphore" to Linux
- Previous by thread: Beginner's question about string's join() method
- Next by thread: Re: importing from .pyd
- Index(es):
Relevant Pages
|