Debugging using QtCreator » python_pydebug.diff
| sysconfig.py 2014-06-10 09:26:09.977430547 -0400 | ||
|---|---|---|
| 328 | 328 |
def _get_makefile_filename(): |
| 329 | 329 |
if _PYTHON_BUILD: |
| 330 | 330 |
return os.path.join(_PROJECT_BASE, "Makefile") |
| 331 |
return os.path.join(get_path('platstdlib').replace("/usr/local","/usr",1), "config" + (sys.pydebug and "_d" or ""), "Makefile")
|
|
| 331 |
return os.path.join(get_path('platstdlib').replace("/usr/local","/usr",1), "config", "Makefile")
|
|
| 332 | 332 | |
| 333 | 333 | |
| 334 | 334 |
def _init_posix(vars): |
| ... | ... | |
| 413 | 413 |
else: |
| 414 | 414 |
inc_dir = _PROJECT_BASE |
| 415 | 415 |
else: |
| 416 |
inc_dir = get_path('platinclude').replace("/usr/local","/usr",1)+(sys.pydebug and "_d" or "")
|
|
| 416 |
inc_dir = get_path('platinclude').replace("/usr/local","/usr",1)
|
|
| 417 | 417 |
return os.path.join(inc_dir, 'pyconfig.h') |
| 418 | 418 | |
| 419 | 419 |
def get_scheme_names(): |