Fix dbgutil build of pyuno

Whether things actually work when pyuno is built against the debugging
runtime, but the internal Python (to the best of my knowledge) still
against the normal one, I don't know. But anyway, this makes the build
succeed here.
This commit is contained in:
Tor Lillqvist 2011-08-22 23:54:48 +03:00
parent c3b5c166b9
commit d6cde02dbc

View File

@ -6,13 +6,7 @@
#if defined _MSC_VER
#pragma warning(push, 1)
#endif
#ifdef _DEBUG
#undef _DEBUG
#include <Python.h>
#define _DEBUG
#else
#include <Python.h>
#endif // #ifdef _DEBUG
#if defined _MSC_VER
#pragma warning(pop)
#endif