Initialize the module as appropriate for POSIX systems.
(vars)
| 376 | |
| 377 | |
| 378 | def _init_posix(vars): |
| 379 | """Initialize the module as appropriate for POSIX systems.""" |
| 380 | # GH-126920: Make sure we don't overwrite any of the keys already set |
| 381 | vars.update(_get_sysconfigdata() | vars) |
| 382 | |
| 383 | |
| 384 | def _init_non_posix(vars): |
no test coverage detected
searching dependent graphs…