Initialize the module as appropriate for POSIX systems.
(vars)
| 387 | |
| 388 | |
| 389 | def _init_posix(vars): |
| 390 | """Initialize the module as appropriate for POSIX systems.""" |
| 391 | # GH-126920: Make sure we don't overwrite any of the keys already set |
| 392 | vars.update(_get_sysconfigdata() | vars) |
| 393 | |
| 394 | |
| 395 | def _init_non_posix(vars): |
no test coverage detected