Message235399
| Author |
sgallou |
| Recipients |
sgallou, steve.dower, tim.golden, zach.ware |
| Date |
2015年02月04日.19:52:33 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1423079553.29.0.215485564439.issue23393@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Thanks Steve for your quick answer.
It's now clear for me.
I will then apply this workaround :
#ifdef PYTHON_USE_SOURCES
#include <Python.h>
#else
#if defined WIN32 && defined _DEBUG
#undef _DEBUG // Undef _DEBUG to use only release version of Python.lib. The debug version of Python.lib is not provided with the Windows installer version (https://www.python.org/downloads/windows/)
#include <Python.h>
#define _DEBUG
#else
#include <Python.h>
#endif
#endif // PYTHON_USE_SOURCES
Sébastien Gallou |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2015年02月04日 19:52:33 | sgallou | set | recipients:
+ sgallou, tim.golden, zach.ware, steve.dower |
| 2015年02月04日 19:52:33 | sgallou | set | messageid: <1423079553.29.0.215485564439.issue23393@psf.upfronthosting.co.za> |
| 2015年02月04日 19:52:33 | sgallou | link | issue23393 messages |
| 2015年02月04日 19:52:33 | sgallou | create |
|