def _DEBUG
#define _RESTORE
#endif
and enable it afterwards
#ifdef _RESTORE
#define _DEBUG
#undef _RESTORE
#endif
Regards,
Wolfgang
___
cython-devel mailing list
cython-devel@python.org
http://mail.python.org/mailman/listinfo/cython-devel
ython.h is
#included from boost/python/detail/wrap_python.hpp - unless BOOST_DEBUG_PYTHON
is defined. The upshot is that if you want “python debugging”and you aren't
using Boost.Build, you should make sure BOOST_DEBUG_PYTHON is defined, or
python debugging will be suppressed.
---
Regards,
Wolfga