Return the path of pyconfig.h.
()
| 465 | |
| 466 | |
| 467 | def get_config_h_filename(): |
| 468 | """Return the path of pyconfig.h.""" |
| 469 | if _PYTHON_BUILD: |
| 470 | if os.name == "nt": |
| 471 | inc_dir = os.path.join(_PROJECT_BASE, 'PC') |
| 472 | else: |
| 473 | inc_dir = _PROJECT_BASE |
| 474 | else: |
| 475 | inc_dir = get_path('platinclude') |
| 476 | return os.path.join(inc_dir, 'pyconfig.h') |
| 477 | |
| 478 | |
| 479 | def get_scheme_names(): |
no test coverage detected