Project

General

Profile

Debugging using QtCreator » python_pydebug.diff

Jonathan Cormier, 06/10/2014 11:00 AM

View differences:

sysconfig.py 2014-06-10 09:26:09.977430547 -0400
def _get_makefile_filename():
if _PYTHON_BUILD:
return os.path.join(_PROJECT_BASE, "Makefile")
return os.path.join(get_path('platstdlib').replace("/usr/local","/usr",1), "config" + (sys.pydebug and "_d" or ""), "Makefile")
return os.path.join(get_path('platstdlib').replace("/usr/local","/usr",1), "config", "Makefile")
def _init_posix(vars):
......
else:
inc_dir = _PROJECT_BASE
else:
inc_dir = get_path('platinclude').replace("/usr/local","/usr",1)+(sys.pydebug and "_d" or "")
inc_dir = get_path('platinclude').replace("/usr/local","/usr",1)
return os.path.join(inc_dir, 'pyconfig.h')
def get_scheme_names():
(1-1/3)