Is there a differences between Py_DEBUG and PYTHON_WITH_DEBUG
Py_DEBUG is the official flags name that Python uses to build Python with debug. But we never define Py_DEBUG at all, only PYTHON_WITH_DEBUG on the setup.py script. Is there a difference I'm overseeing or do they just need renaming?
Is there a differences between
Py_DEBUGandPYTHON_WITH_DEBUGPy_DEBUGis the official flags name that Python uses to build Python with debug. But we never definePy_DEBUGat all, onlyPYTHON_WITH_DEBUGon thesetup.pyscript. Is there a difference I'm overseeing or do they just need renaming?