[EMAIL PROTECTED] wrote:
> Please, confirm me one thing. According to Python documentation for
> Windows the objects .pyd and .dll have the same characteristics. I
> observed that in Python24 it does not produce errors when importing
> xx.dll or xx.pyd, however in python25b2, it only accepts nto im
Please, confirm me one thing. According to Python documentation for
Windows the objects .pyd and .dll have the same characteristics. I
observed that in Python24 it does not produce errors when importing
xx.dll or xx.pyd, however in python25b2, it only accepts nto import
xx.pyd.
Best regards.
--
h
wen wrote:
> 1. what's the difference between them? i saw the code is same as common c++
> extended python module, can i use microsoft visual C++ to create a dll
> project for compiling it as _cmd.dll?
.pyd is just a naming convention. It was probably introduced to prevent
name clashes with unrel
i have written python extend module by c/c++, but i saw a module of a
software(pyMOL, you can get it from http://pymol.sourceforge.net/) called
_cmd.pyd instead of _cmd.dll. and it is written by c/c++ also, the author
use makefile to compile it into _cmd.pyd. i have some question about it:
1. what'