This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:33sgallousetrecipients: + sgallou, tim.golden, zach.ware, steve.dower
2015-02-04 19:52:33sgallousetmessageid: <1423079553.29.0.215485564439.issue23393@psf.upfronthosting.co.za>
2015-02-04 19:52:33sgalloulinkissue23393 messages
2015-02-04 19:52:33sgalloucreate