Fredrik Lundh wrote:

I do have the tidy.dll installed (if I didn't, I couldn't even import the tidy module).

typing the following into the Python interpreter might give you some more clues:

    >>> import _tidy
    >>> _tidy.__file__
    >>> dir(_tidy)

or not, since ctypes is involved.

have you checked for multiple copies of tidy.dll?

if you have MSVC on your machine, try using "dumpbin /exports" on the DLL to check that it really exports the symbols the binding expects.

</F>

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to