| 90 | }; |
| 91 | |
| 92 | inline wchar_t *widen_chars(const char *safe_arg) { |
| 93 | wchar_t *widened_arg = Py_DecodeLocale(safe_arg, nullptr); |
| 94 | return widened_arg; |
| 95 | } |
| 96 | |
| 97 | inline void precheck_interpreter() { |
| 98 | if (Py_IsInitialized() != 0) { |
no outgoing calls
no test coverage detected