How do I get pythonXY_d.lib ?

Dan dan at eloff.info
Tue Jul 27 17:21:27 EDT 2004


A pragma uses it in the python include files for debug builds. I've
worked around it by the following:

#ifdef _DEBUG
#undef _DEBUG
#include "Python.h"
#define _DEBUG
#else
#include "Python.h"
#endif

But it would be nice to use it if I know where to get it from.

Thanks,
-Dan




More information about the Python-list mailing list