Initialize the module as appropriate for POSIX systems.
(vars)
| 525 | f.write(pybuilddir) |
| 526 | |
| 527 | def _init_posix(vars): |
| 528 | """Initialize the module as appropriate for POSIX systems.""" |
| 529 | # _sysconfigdata is generated at build time, see _generate_posix_vars() |
| 530 | name = _get_sysconfigdata_name() |
| 531 | _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0) |
| 532 | build_time_vars = _temp.build_time_vars |
| 533 | vars.update(build_time_vars) |
| 534 | |
| 535 | def _init_non_posix(vars): |
| 536 | """Initialize the module as appropriate for NT""" |
no test coverage detected