sean2077

Results 2 issues of sean2077

Not all users have python3.7+ environment.

In unicode::details::utf8_decode function: ```cpp static inline std::wstring utf8_decode(const std::string& s) { std::string curLocale = setlocale(LC_ALL, ""); const char* _Source = s.c_str(); size_t _Dsize = mbstowcs(NULL, _Source, 0) + 1; wchar_t*...