We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python3_d.dll
Build a debug version of CPython on Windows. Build an an extension module linked against this debug CPython's python3_d.dll.
This crashes at runtime with the following error:
ImportError: Module use of python3_d.dll conflicts with this version of Python.
This originates from
cpython/Python/dynload_win.c
Lines 311 to 330 in 7a25310
It looks like this code doesn't account for the possibility of linking against python3_d.dll when using a debug build.
Originally reported to me in PyO3/pyo3#2780
Bug report
Build a debug version of CPython on Windows.
Build an an extension module linked against this debug CPython's
python3_d.dll.This crashes at runtime with the following error:
This originates from
cpython/Python/dynload_win.c
Lines 311 to 330 in 7a25310
It looks like this code doesn't account for the possibility of linking against
python3_d.dllwhen using a debug build.Your environment
Originally reported to me in PyO3/pyo3#2780
Linked PRs