Return the path of pyconfig.h.
()
| 460 | |
| 461 | |
| 462 | def get_config_h_filename(): |
| 463 | """Return the path of pyconfig.h.""" |
| 464 | if _PYTHON_BUILD: |
| 465 | if os.name == "nt": |
| 466 | inc_dir = os.path.join(_PROJECT_BASE, 'PC') |
| 467 | else: |
| 468 | inc_dir = _PROJECT_BASE |
| 469 | else: |
| 470 | inc_dir = get_path('platinclude') |
| 471 | return os.path.join(inc_dir, 'pyconfig.h') |
| 472 | |
| 473 | |
| 474 | def get_scheme_names(): |
no test coverage detected
searching dependent graphs…