()
| 8 | |
| 9 | |
| 10 | def _can_security_check(): |
| 11 | # On WASI, getuid() is indicated as a stub but it may also be missing. |
| 12 | return os.name == 'posix' and hasattr(os, 'getuid') |
| 13 | |
| 14 | |
| 15 | def _getpwuid(uid): |
no outgoing calls
no test coverage detected
searching dependent graphs…