vote up 9 vote down star
1

I hear D is link-compatible with C. I'd like to use D to create an extension module for Python. Am I overlooking some reason why it's never going to work?

flag
1  
Yes, this is possible because D is capable of interfacing with C and Python is also capable of interfacing with C (either through it's C/C++ API or ctypes) It's just an issue of making your D code have the extern "C" modifiers, and then making use of the python C/C++ API or ctypes to access them. It looks like wuub's link contains modules for both D and Python that will make the entire process easier. – Falaina Jul 19 at 15:30

2 Answers

vote up 11 vote down check

Wait? Something like this http://pyd.dsource.org/

link|flag
1  
Wait? For what? – James McMahon Jul 19 at 15:53
emmmmm....... 42. – wuub Jul 19 at 16:05
Yep PyD is what you want. Anyone know if it works with the latest DMD 1.x or 2.x versions? – Baxissimo Jul 21 at 21:02
The commit messages show that it was intended to work with both at times. I doubt it works with latest D2 as that has changed a lot but don't expect it to work too well with D1 either as the last change to /trunk was august 07 dsource.org/projects/pyd/log/trunk – Ctrl Alt D-1337 Jul 22 at 9:11
vote up 1 vote down

Sounds easy and people here who say it's just up to the C API don't know how difficult it is to integrate the Boehm GC used by D within Python. PyD looks like a typical concept proof where people haven't realized the real world problems.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.