Is it possible to know how to use an undocumented .pyd file?

Courageous jkraska1 at san.rr.com
Fri Aug 18 23:05:38 EDT 2000


Luke Chen wrote:
> 
> Hi.
> 
> Is it possible to know how to use an undocumented .pyd file?

I'm going out on a limb here, but aren't .pdy files just .dlls in
disguise? If so, there is probably a way to scan the .dll for likely
functions (dlsym or some such). You might also see what shows up in
<module>.__dict__. Ala:

>>>> import string
>>>> string.__dict__

....









C/



More information about the Python-list mailing list