Return the path of pyconfig.h.
()
| 585 | |
| 586 | |
| 587 | def get_config_h_filename(): |
| 588 | """Return the path of pyconfig.h.""" |
| 589 | if _PYTHON_BUILD: |
| 590 | if os.name == "nt": |
| 591 | inc_dir = os.path.join(_PROJECT_BASE, "PC") |
| 592 | else: |
| 593 | inc_dir = _PROJECT_BASE |
| 594 | else: |
| 595 | inc_dir = get_path('platinclude') |
| 596 | return os.path.join(inc_dir, 'pyconfig.h') |
| 597 | |
| 598 | |
| 599 | def get_scheme_names(): |
no test coverage detected