Re: loading modules in debug

2006-01-30 Thread [EMAIL PROTECTED]
[I haven't seen an answer for this older question, so I figured I'd go ahead and post one] Andras Balogh wrote: > > The problem is that, in debug mode, Python expects every module name to > be postfixed with _d, which makes my dynamic loading (using LoadLibrary) > not work, unless I #ifdef it ever

loading modules in debug

2006-01-26 Thread Andras Balogh
The project I'm working on is written mainly C/C++, spiced with some Python scripts. Now, I have several dlls, which work both as a Python extension modules, exporting functions to Python via "initmodule", and as normal dynamic libraries, to which I link dynamically from within my C program. T