I have some code written in C++0x that I want to expose to Python 2.7 as an extension.
Since it uses several C++0x features I'd prefer not to rewrite it in C++03, so I'm forced to use VC2010. However the default Python 2.7 installation is compiled with VC2008.
I found this post that explains how to force distutils to use VC2010, but a commenter points out that this will result in a DLL clash between msvcr90.dll (linked by the interpreter) and msvcr100.dll (linked by the extension).
Is there a way to compile the extension in VC2010 without having to recompile Python?
(I've started programming on Windows only recently, so I don't have an exact understanding of how dynamic linking works there)